22 lines
475 B
C#
22 lines
475 B
C#
|
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;
|
|||
|
|
|||
|
|
|||
|
}
|
|||
|
}
|