lampac/Shared/Models/Base/AccsUser.cs
lampac-talks f843f04fd4 chore: initial commit 154.3
Signed-off-by: lampac-talks <lampac-talks@users.noreply.github.com>
2026-01-30 16:23:09 +03:00

24 lines
507 B
C#

namespace Shared.Models.Base
{
public class AccsUser
{
public string id { get; set; }
public List<string> ids { get; set; } = new List<string>();
public bool IsPasswd { get; set; }
public DateTime expires { get; set; }
public int group { get; set; }
public bool ban { get; set; }
public string ban_msg { get; set; }
public string comment { get; set; }
public Dictionary<string, object> @params { get; set; }
}
}