﻿using System;

namespace AsmodeeDigital.PlayReal.Samples.UI.LobbyPlayers
{
    public class ChatEntry
    {
        public string PlayerName { get; set; }
        public string Text { get; set; }
        public DateTime DateTime { get; set; }
        public bool ShowDate { get; set; }
        public bool IsLocalPlayer { get; set; }
        public bool IsCensored { get; set; }
    }
}
