Первичное заполнение интерфейсов мебели, моудлей и материалов
This commit is contained in:
parent
69827ed848
commit
609c801c3d
@ -6,8 +6,4 @@
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Folder Include="Models\" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace FurnitureFactoryDataModels.Models
|
||||
{
|
||||
internal interface IFurnitureModel : IId
|
||||
{
|
||||
string Name { get;}
|
||||
string Color { get; }
|
||||
string Type { get; }
|
||||
}
|
||||
}
|
@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace FurnitureFactoryDataModels.Models
|
||||
{
|
||||
internal interface IHeadsetModuleModel : IId
|
||||
{
|
||||
string Style { get;}
|
||||
int Cost { get;}
|
||||
int UserID { get;}
|
||||
}
|
||||
}
|
@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace FurnitureFactoryDataModels.Models
|
||||
{
|
||||
internal interface IMaterialModel : IId
|
||||
{
|
||||
string Name { get; }
|
||||
string Cost { get; }
|
||||
int userID { get; }
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user