/
gamma
/
Gamma-API
Обзор
Документация
Войти
/
gamma
/
Gamma-API
Код
Запросы
0
Пакеты
0
Релизы
0
CI/CD
Аналитика
master
Gamma.Data.Entities/Domain.cs
11 строк
315 B
Vlavimir Solodovnikov
Add Entities, repositories and services
11 июн 2022, 00:57
11 июн 2022, 00:57
c3562f4
Код
Авторство
О чём код?
namespace Gamma.Data.Entities { public class Domain { public long DomainId { get; set; } public User Owner { get; set; } = null!; public string Name { get; set; } = null!; public DateTime CreatedDate { get; set; } public DateTime UpdatedDate { get; set; } } }