Основа слоя моделей

This commit is contained in:
Максим Яковлев 2024-04-17 11:40:40 +04:00
parent 8efec1a335
commit e653fdca68
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ServiceStationDataModels
{
public interface IId
{
int Id { get; }
}
}

View File

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