SUBD_Labs/BeauySalonContracts/ViewModels/MasterViewModel.cs

16 lines
538 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;
[DisplayName("Специализация")]
public string Specialization { get; set; } = string.Empty;
public Dictionary<int, (IServiceModel, int)> MasterServices { get; set; } = new();
}
}