-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBlogPost.cs
28 lines (26 loc) · 1.01 KB
/
BlogPost.cs
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
using KenticoCloud.Delivery;
using System;
using System.Collections.Generic;
using System.Text;
namespace Common.Models
{
public partial class BlogPost
{
public const string Codename = "blog_post";
public const string TitleCodename = "title";
public const string PerexCodename = "perex";
public const string DateCodename = "date";
public const string AuthorCodename = "author";
public const string HeaderImageCodename = "header_image";
public const string TopicCodename = "topic";
public const string UrlSlugCodename = "url_slug";
public string Title { get; set; }
public DateTime? Date { get; set; }
public IEnumerable<Author> Author { get; set; }
public IEnumerable<Asset> HeaderImage { get; set; }
public string UrlSlug { get; set; }
public ContentItemSystemAttributes System { get; set; }
public IEnumerable<MultipleChoiceOption> Topic { get; set; }
public string Perex { get; set; }
}
}