This commit is contained in:
14
Models/Post.cs
Normal file
14
Models/Post.cs
Normal 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; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user