CourseWorkElectronicsShop/ElectronicsShop/ElectronicsShopContracts/ViewModels/RoleViewModel.cs

22 lines
475 B
C#
Raw Normal View History

2024-04-27 13:01:57 +04:00
using ElectronicsShopDataModels;
using ElectronicsShopDataModels.Models;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ElectronicsShopContracts.ViewModels
{
public class RoleViewModel : IRoleModel
{
public int ID { get; set; }
[DisplayName("Название роли")]
public string Name { get; set; } = string.Empty;
}
}