forked from siteserver/cms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSeoMetaInfo.cs
More file actions
170 lines (150 loc) · 3.57 KB
/
SeoMetaInfo.cs
File metadata and controls
170 lines (150 loc) · 3.57 KB
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
using System;
namespace SiteServer.CMS.Model
{
[Serializable]
public class SeoMetaInfo
{
private int _seoMetaId;
private int _publishmentSystemId;
private string _seoMetaName;
private bool _isDefault;
private string _pageTitle;
private string _keywords;
private string _description;
private string _copyright;
private string _author;
private string _email;
private string _language;
private string _charset;
private string _distribution;
private string _rating;
private string _robots;
private string _revisitAfter;
private string _expires;
public SeoMetaInfo()
{
_seoMetaId = 0;
_publishmentSystemId = 0;
_seoMetaName = string.Empty;
_isDefault = false;
_pageTitle = string.Empty;
_keywords = string.Empty;
_description = string.Empty;
_copyright = string.Empty;
_author = string.Empty;
_email = string.Empty;
_language = string.Empty;
_charset = string.Empty;
_distribution = string.Empty;
_rating = string.Empty;
_robots = string.Empty;
_revisitAfter = string.Empty;
_expires = string.Empty;
}
public SeoMetaInfo(int seoMetaId, int publishmentSystemId, string seoMetaName, bool isDefault, string pageTitle, string keywords, string description, string copyright, string author, string email, string language, string charset, string distribution, string rating, string robots, string revisitAfter, string expires)
{
_seoMetaId = seoMetaId;
_publishmentSystemId = publishmentSystemId;
_seoMetaName = seoMetaName;
_isDefault = isDefault;
_pageTitle = pageTitle;
_keywords = keywords;
_description = description;
_copyright = copyright;
_author = author;
_email = email;
_language = language;
_charset = charset;
_distribution = distribution;
_rating = rating;
_robots = robots;
_revisitAfter = revisitAfter;
_expires = expires;
}
public int SeoMetaId
{
get{ return _seoMetaId; }
set{ _seoMetaId = value; }
}
public int PublishmentSystemId
{
get{ return _publishmentSystemId; }
set{ _publishmentSystemId = value; }
}
public string SeoMetaName
{
get{ return _seoMetaName; }
set{ _seoMetaName = value; }
}
public bool IsDefault
{
get{ return _isDefault; }
set{ _isDefault = value; }
}
public string PageTitle
{
get { return _pageTitle; }
set { _pageTitle = value; }
}
public string Keywords
{
get { return _keywords; }
set { _keywords = value; }
}
public string Description
{
get{ return _description; }
set{ _description = value; }
}
public string Copyright
{
get { return _copyright; }
set { _copyright = value; }
}
public string Author
{
get { return _author; }
set { _author = value; }
}
public string Email
{
get{ return _email; }
set{ _email = value; }
}
public string Language
{
get{ return _language; }
set{ _language = value; }
}
public string Charset
{
get{ return _charset; }
set{ _charset = value; }
}
public string Distribution
{
get{ return _distribution; }
set{ _distribution = value; }
}
public string Rating
{
get{ return _rating; }
set{ _rating = value; }
}
public string Robots
{
get{ return _robots; }
set{ _robots = value; }
}
public string RevisitAfter
{
get{ return _revisitAfter; }
set{ _revisitAfter = value; }
}
public string Expires
{
get{ return _expires; }
set{ _expires = value; }
}
}
}