EmperorPalpatine/EmperorPalpatine/LoggedChatMessage.cs
2024-04-02 20:39:12 -04:00

9 lines
221 B
C#

namespace EmperorPalpatine;
public class LoggedChatMessage
{
public string VM { get; set; }
public string Username { get; set; }
public string Message { get; set; }
public string Timestamp { get; set; }
}