/
n1kolas
/
VendingUserClient
Обзор
Документация
Войти
/
n1kolas
/
VendingUserClient
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Models/Role.cs
16 строк
378 B
Kharchenko Nickolai
Add project files.
13 июн 2025, 20:30
13 июн 2025, 20:30
9f65bf4
Код
Авторство
О чём код?
using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Text.Json.Serialization; namespace AdminClient.Models { public class Role { public long ID { get; set; } [MaxLength (30)] [Required] public string Name { get; set; } [JsonIgnore] public IList<User> Users { get; set; } } }