20 lines
597 B
C#
Raw Normal View History

2023-03-28 10:24:47 +04:00
using LawFirmDataModels.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LawFirmContracts.BindingModels
{
public class ShopBindingModel : IShopModel
{
public string ShopName { get; set; } = string.Empty;
public string Address { get; set; } = string.Empty;
public DateTime DateOpen { get; set; } = DateTime.Now;
2023-04-11 01:53:51 +04:00
public int Capacity { get; set; }
public Dictionary<int, (IDocumentModel, int)> ShopDocuments { get; set; } = new();
2023-03-28 10:24:47 +04:00
public int Id { get; set; }
}
}