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
2022-10-20 22:24:04 +10:00

18 lines
314 B
C#

namespace NeDvachAPI
{
public class Post
{
public DateTime Date { get; set; }
public int Id { get; set; }
public string Text { get; set; }
}
public class ReceivedValues
{
public string height { get; set; }
public string altitude { get; set; }
}
}