/
AMachine
/
MMDB_Backend
Обзор
Документация
Войти
/
AMachine
/
MMDB_Backend
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
MMDB.Core/Models/Note.cs
23 строки
790 B
AssaultMachine
add field Severity to Note
18 май 2025, 19:57
18 май 2025, 19:57
db910ba
Код
Авторство
О чём код?
namespace MMDB.Core.Models; public class Note { public int? Id { get; set; } public string Type { get; set; } public string TargetCkey { get; set; } public string AdminCkey { get; set; } public string Text { get; set; } public DateTime Timestamp { get; set; } public string? Server { get; set; } public uint? ServerIp { get; set; } public uint? ServerPort { get; set; } public uint? RoundId { get; set; } public bool IsSecret { 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 bool IsDeleted { get; set; } public string? DeletedCkey { get; set; } }