This repository has been archived on 2025-01-01. You can view files and clone it, but cannot push or open issues or pull requests.
ShiftOS_TheReturn/ShiftOS.Objects/ChatRoom.cs
2017-05-27 12:11:36 -04:00

16 lines
325 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ShiftOS.Objects
{
public class ChatRoom
{
public string Id { get; set; }
public string Name { get; set; }
public List<ChatMessage> Messages { get; set; }
}
}