DataModelsCreate

This commit is contained in:
Sergey Kozyrev 2024-04-03 12:55:48 +04:00
parent d8c6045653
commit 738e8021ba
2 changed files with 11 additions and 0 deletions

View File

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

7
Course/DataModels/IId.cs Normal file
View File

@ -0,0 +1,7 @@
namespace DataModels
{
public interface IId
{
int Id { get; }
}
}