/
AMachine
/
MMDB_Backend
Обзор
Документация
Войти
/
AMachine
/
MMDB_Backend
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
MMDB.Data/Entities/SS13/MessageEntity.cs
43 строки
912 B
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 MessageEntity { public int Id { get; set; } public string Type { get; set; } = null!; public string Targetckey { get; set; } = null!; public string Adminckey { get; set; } = null!; public string Text { get; set; } = null!; public DateTime Timestamp { get; set; } public string? Server { get; set; } public uint ServerIp { get; set; } public ushort ServerPort { get; set; } public uint? RoundId { get; set; } public byte Secret { get; set; } public DateTime? ExpireTimestamp { get; set; } public string? Severity { get; set; } public uint? Playtime { get; set; } public string? Lasteditor { get; set; } public string? Edits { get; set; } public byte Deleted { get; set; } public string? DeletedCkey { get; set; } }