PIbd-21_BatylkinaAO_MusoevD.../Canteen/CanteenContracts/ViewModels/RoleViewModel.cs
2023-04-06 14:34:58 +04:00

20 lines
467 B
C#

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; }
}
}