/
AMachine
/
MMDB_Backend
Обзор
Документация
Войти
/
AMachine
/
MMDB_Backend
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
MMDB.Data/Entities/SS13/BanEntity.cs
53 строки
1 KB
AssaultMachine
init
04 май 2025, 20:49
04 май 2025, 20:49
5d371a1
Код
Авторство
О чём код?
using System; using System.Collections.Generic; namespace MMDB.Data.Entities.SS13; public partial class BanEntity { public uint? Id { get; set; } public DateTime Bantime { get; set; } public uint ServerIp { get; set; } public ushort ServerPort { get; set; } public uint? RoundId { get; set; } public string? Role { get; set; } public DateTime? ExpirationTime { get; set; } public byte AppliesToAdmins { get; set; } public string Reason { get; set; } = null!; public string? Ckey { get; set; } public uint? Ip { get; set; } public string? Computerid { get; set; } public string ACkey { get; set; } = null!; public uint AIp { get; set; } public string AComputerid { get; set; } = null!; public string Who { get; set; } = null!; public string Adminwho { get; set; } = null!; public string? Edits { get; set; } public DateTime? UnbannedDatetime { get; set; } public string? UnbannedCkey { get; set; } public uint? UnbannedIp { get; set; } public string? UnbannedComputerid { get; set; } public uint? UnbannedRoundId { get; set; } }