14 lines
401 B
C#
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; }
|
|
}
|
|
} |