18 lines
314 B
C#
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; }
|
|
}
|
|
} |