This commit is contained in:
VictoriaPresnyakova 2023-02-05 17:41:50 +04:00
parent 6f33a1199f
commit 1c086e4d64
3 changed files with 16 additions and 13 deletions

View File

@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
@ -6,4 +6,8 @@
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<Folder Include="Models\" />
</ItemGroup>
</Project>

View File

@ -1,12 +1,11 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AbstractJewelryStoreModels.Enums
namespace AbstractShopDataModels.Enums
{
internal class OrderStatus
public enum OrderStatus
{
Неизвестен = -1,
Принят = 0,
Выполняется = 1,
Готов = 2,
Выдан = 3
}
}
}

View File

@ -1,7 +1,7 @@
namespace AbstractShopDataModels
{
public class Class1
public interface IId
{
int Id { get; }
}
}
}