Files
SkydiveLogs/Back/skydiveLogs-api.Domain/Aircraft.cs
2021-08-11 22:37:14 +02:00

14 lines
274 B
C#

namespace skydiveLogs_api.Domain
{
public class Aircraft
{
#region Public Properties
public int Id { get; set; }
public string ImageData { get; set; }
public string Name { get; set; }
#endregion Public Properties
}
}