Add controler, domain and service about "Tunnel"

This commit is contained in:
Sébastien ANDRE
2023-05-03 14:23:07 +02:00
parent 738b0aa439
commit 8b5a3f274e
11 changed files with 230 additions and 3 deletions

View File

@@ -5,6 +5,7 @@
Gear,
JumpType,
Aircraft,
DropZone
DropZone,
Tunnel
}
}

View File

@@ -0,0 +1,19 @@
using System.Collections.Generic;
namespace skydiveLogs_api.Domain
{
public class Tunnel
{
#region Public Properties
public string Address { get; set; }
public string Email { get; set; }
public int Id { get; set; }
public string Latitude { get; set; }
public string Longitude { get; set; }
public string Name { get; set; }
public string Website { get; set; }
#endregion Public Properties
}
}