15 lines
326 B
C#
15 lines
326 B
C#
using System;
|
|
|
|
namespace Website.Models
|
|
{
|
|
public class BlogPost
|
|
{
|
|
public int Id { get; set; }
|
|
public string Title { get; set; }
|
|
public string Content { get; set; }
|
|
public DateTime Timestamp { get; set; }
|
|
public string Draft { get; set; }
|
|
public string Url { get; set; }
|
|
public int UserId { get; set; }
|
|
}
|
|
}
|