postit and them also
This commit is contained in:
parent
de616809ae
commit
fa7d6242f1
18 changed files with 5322 additions and 121 deletions
16
src/PostIt/PostIt/Models/BlogPost.cs
Normal file
16
src/PostIt/PostIt/Models/BlogPost.cs
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
using System;
|
||||
|
||||
namespace PostIt.Models;
|
||||
|
||||
public class BlogPost
|
||||
{
|
||||
public long Id { get; set; }
|
||||
public string Title { get; set; } = string.Empty;
|
||||
public string? Article { get; set; }
|
||||
public string? Photo { get; set; }
|
||||
public string? AuthorId { get; set; }
|
||||
public DateTime DateCreated { get; set; }
|
||||
public string? UserCreated { get; set; }
|
||||
public DateTime DateModified { get; set; }
|
||||
public string? UserModified { get; set; }
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue