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/Post.cs

13 lines
228 B
C#

namespace NeDvachAPI
{
public class Post
{
public string? Timestamp { get; set; }
public int Id { get; set; }
public string Text { get; set; }
public string ImgURL { get; set; }
}
}