/
AMachine
/
MMDB_Backend
Обзор
Документация
Войти
/
AMachine
/
MMDB_Backend
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
MMDB.Data/Entities/SS13/PollQuestionEntity.cs
35 строк
765 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 PollQuestionEntity { public int Id { get; set; } public string Polltype { get; set; } = null!; public DateTime CreatedDatetime { get; set; } public DateTime Starttime { get; set; } public DateTime Endtime { get; set; } public string Question { get; set; } = null!; public string? Subtitle { get; set; } public byte Adminonly { get; set; } public int? Multiplechoiceoptions { get; set; } public string CreatedbyCkey { get; set; } = null!; public uint CreatedbyIp { get; set; } public byte Dontshow { get; set; } public byte AllowRevoting { get; set; } public byte Deleted { get; set; } }