SUBD_Labs/BeauySalonContracts/ViewModels/MasterViewModel.cs

16 lines
519 B
C#
Raw Normal View History

2023-05-13 13:37:59 +04:00
using BeautySalonDataModels.Models;
using System.ComponentModel;
namespace BeautySalonContracts.ViewModels
{
public class MasterViewModel : IMasterModel
{
public int Id { get; set; }
[DisplayName("ФИО мастера")]
public string MasterFIO { get; set; } = string.Empty;
2023-05-13 19:29:18 +04:00
[DisplayName("Рабочее время")]
public double WorkingHours { get; set; }
2023-05-13 13:37:59 +04:00
public Dictionary<int, (IServiceModel, int)> MasterServices { get; set; } = new();
}
}