This repository has been archived on 2023-06-30. You can view files and clone it, but cannot push or open issues or pull requests.
2chBackAPI/Models/Post.cs
RakVhalate a4b72664fd
All checks were successful
continuous-integration/drone/push Build is passing
Added some folders.
2022-11-25 22:40:17 +10:00

14 lines
401 B
C#

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; }
}
}