Added some folders.
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2022-11-25 22:40:17 +10:00
parent 50a3c94af8
commit a4b72664fd
13 changed files with 53 additions and 50 deletions

14
Models/Post.cs Normal file
View File

@@ -0,0 +1,14 @@
namespace NeDvachAPI.Models
{
public class Post
{
public string Timestamp { get; set; }
public int Id { get; set; }
public string Text { get; set; }
public string[] ImgURL { get; set; }
public int Thread_Id { get; set; }
public bool Is_OP { get; set; }
public bool Is_Deleted { get; set; }
public string? Ip { get; set; }
}
}