lampac/Shared/Models/Module/SisiEventsModel.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

19 lines
519 B
C#

namespace Shared.Models.Module
{
public class SisiEventsModel
{
public SisiEventsModel(string rchtype, string account_email, string uid, string token)
{
this.rchtype = rchtype;
this.account_email = account_email;
this.uid = uid;
this.token = token;
}
public string rchtype { get; set; }
public string account_email { get; set; }
public string uid { get; set; }
public string token { get; set; }
}
}