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

14 lines
401 B
C#
Raw Normal View History

2022-11-25 22:40:17 +10:00
namespace NeDvachAPI.Models
2022-10-17 14:29:09 +10:00
{
public class Post
{
2022-11-18 14:46:31 +10:00
public string Timestamp { get; set; }
2022-10-17 14:29:09 +10:00
public int Id { get; set; }
public string Text { get; set; }
2022-11-18 14:46:31 +10:00
public string[] ImgURL { get; set; }
public int Thread_Id { get; set; }
public bool Is_OP { get; set; }
public bool Is_Deleted { get; set; }
2022-11-22 18:03:38 +10:00
public string? Ip { get; set; }
2022-10-20 22:24:04 +10:00
}
2022-10-17 14:29:09 +10:00
}