23 lines
568 B
C#
23 lines
568 B
C#
|
using FurnitureFactoryDataModels.Models;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace FurnitureContracts.BindingModels
|
|||
|
{
|
|||
|
public class FurnitureBindingModel : IFurnitureModel
|
|||
|
{
|
|||
|
public string Name { get; set; } = string.Empty;
|
|||
|
|
|||
|
public string Color { get; set; } = string.Empty;
|
|||
|
|
|||
|
public string Type { get; set; } = string.Empty;
|
|||
|
|
|||
|
public Dictionary<int, IMaterialModel> FurnitureMaterial { get; set; }
|
|||
|
|
|||
|
public int Id { get; set; }
|
|||
|
}
|
|||
|
}
|