Промежуточный коммит с созданием моделей

This commit is contained in:
AnnZhimol 2023-04-01 17:52:36 +04:00
parent 7b9f83bfa1
commit 28f97b57a7
5 changed files with 24 additions and 4 deletions

View File

@ -6,8 +6,4 @@
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<Folder Include="Models\" />
</ItemGroup>
</Project>

View File

@ -0,0 +1,6 @@
namespace HotelDataModels.Models
{
public interface IConferenceModel
{
}
}

View File

@ -0,0 +1,6 @@
namespace HotelDataModels.Models
{
public interface IMealPlanModel
{
}
}

View File

@ -0,0 +1,6 @@
namespace HotelDataModels.Models
{
public interface IMemberModel
{
}
}

View File

@ -0,0 +1,6 @@
namespace HotelDataModels.Models
{
public interface IOrganiserModel
{
}
}