username@email.com
2021-08-05 a829564b85fa72a2074fb6a0cbfaeb0fcb7d1c6b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
 
namespace zhengcaioa.Models
{
 
    public class SiteConfig
    {
        private static string _siteName;
        public static string SiteName
        {
            get
            {
                return "政采招投标咨询";
            }
 
            set
            {
                _siteName = value;
            }
        }
        private static string _keywords;
        public static string Keywords
        {
            get
            {
                return _keywords; ;
            }
 
            set
            {
                _keywords = value;
            }
        }
        private static string _description;
        public static string Description
        {
            get
            {
                return _description;
            }
 
            set
            {
                _description = value;
            }
        }
 
        private static string _author;
        public static string Author
        {
            get
            {
                return _author;
            }
 
            set
            {
                _author = value;
            }
        }
 
        private static string _shortcutIcon;
        public static string ShortcutIcon
        {
            get
            {
                return "/img/logo.png?v=3";
            }
 
            set
            {
                _shortcutIcon = value;
            }
        }
    }
}