1
0
mirror of synced 2025-02-25 22:28:01 +01:00
2023-02-11 01:24:24 +08:00

44 lines
1014 B
C#

namespace SharedProject.models;
public class OnlineMatchingData
{
public long MachineId { get; set; }
public long EventId { get; set; }
public long MatchingId { get; set; }
public long EntryNo { get; set; }
public string EntryStart { get; set; } = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
public long Status { get; set; } = 1;
public long CardId { get; set; }
public string PlayerName { get; set; } = string.Empty;
public long AvatarId { get; set; }
public long TitleId { get; set; }
public long ClassId { get; set; }
public long GroupId { get; set; }
public long TenpoId { get; set; }
public string TenpoName { get; set; } = "1337";
public long PrefId { get; set; }
public string Pref { get; set; } = "nesys";
public long MessageId { get; set; }
public long MatchingTimeout { get; set; } = 99;
public long MatchingWaitTime { get; set; } = 10;
public long MatchingRemainingTime { get; set; } = 3;
}