/
qwiklly
/
arc-server
Обзор
Документация
Войти
/
qwiklly
/
arc-server
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
trunk
src/AppRemoteConfig/Models/Database/Organization.cs
20 строк
567 B
CLTanuki
feat(#3, #7): scope, based on current user
10 янв 2024, 18:20
10 янв 2024, 18:20
0019562
Код
Авторство
О чём код?
namespace AppRemoteConfig.Models.Database { using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; public class Organization { [Key] [DatabaseGenerated(DatabaseGeneratedOption.Identity)] public Guid Id { get; set; } public string Title { get; set; } public List<Application> Applications { get; } = new(); public List<AppUser> AppUsers { get; } = new(); public List<OrganizationAccess> OrganizationAccesses { get; } = new(); } }