CourseWorkElectronicsShop/ElectronicsShop/ElectronicsShopContracts/BindingModels/RoleBindingModel.cs

17 lines
366 B
C#
Raw Normal View History

2024-04-27 13:01:57 +04:00
using ElectronicsShopDataModels.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ElectronicsShopContracts.BindingModels
{
public class RoleBindingModel : IRoleModel
{
public int ID { get; set; }
public string Name { get; set; } = string.Empty;
}
}