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
RakVhalate b04841fb1d
All checks were successful
continuous-integration/drone/push Build is passing
Added Timestamp Feature
2022-10-29 04:20:10 +10:00

18 lines
318 B
C#

namespace NeDvachAPI
{
public class Post
{
public string? Timestamp { 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; }
}
}