Coursach/Course/Contracts/BindingModels/WorkshopBindingModel.cs

16 lines
518 B
C#
Raw Normal View History

2024-04-03 13:49:07 +04:00
using DataModels.Models;
namespace Contracts.BindingModels
{
public class WorkshopBindingModel : IWorkshopModel
{
public int Id { get; set; }
2024-04-27 12:35:20 +04:00
public int UserId { get; set; }
public string Title { get; set; } = string.Empty;
public string Address { get; set; } = string.Empty;
public string Director { get; set; } = string.Empty;
public int ProductionId { get; set; }
public Dictionary<int, IWorkerModel> WorkshopWorker { get; set; } = new();
2024-04-03 13:49:07 +04:00
}
}