mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-07 21:58:06 -05:00
reintroduce throttling for servers that are unreachable (defaults to 60 seconds between polls) small revert to the RektT5M parser contell -> tell add migration to introduce gamename to server impllement quickmessage mapping
15 lines
395 B
C#
15 lines
395 B
C#
using System;
|
|
using static SharedLibraryCore.Server;
|
|
|
|
namespace SharedLibraryCore.Dtos
|
|
{
|
|
public class ChatInfo
|
|
{
|
|
public int ClientId { get; set; }
|
|
public string Message { get; set; }
|
|
public DateTime Time { get; set; }
|
|
public string Name { get; set; }
|
|
public Game ServerGame { get; set; }
|
|
public bool IsQuickMessage { get; set; }
|
|
}
|
|
} |