The next generation of the Teknik Services. Written in ASP.NET.
https://www.teknik.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
590 B
27 lines
590 B
using System; |
|
using System.Collections.Generic; |
|
using System.ComponentModel.DataAnnotations; |
|
|
|
namespace Teknik.Areas.Blog.Models |
|
{ |
|
public class Post |
|
{ |
|
public int PostId { get; set; } |
|
|
|
public int BlogId { get; set; } |
|
|
|
public Blog Blog { get; set; } |
|
|
|
public DateTime DatePosted { get; set; } |
|
|
|
public DateTime DatePublished { get; set; } |
|
|
|
public bool Published { get; set; } |
|
|
|
public string Title { get; set; } |
|
|
|
public string Article { get; set; } |
|
|
|
public List<string> Tags { get; set; } |
|
} |
|
} |