using CanteenDataModels.Models; using System; using System.Collections.Generic; using System.ComponentModel; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CanteenContracts.View { public class RoleViewModel : IRoleModel { [DisplayName("Название роли")] public string RoleName { get; set; } = string.Empty; public int Id { get; set; } } }