aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.Objects/ChatRoom.cs
blob: e4c89cece20868f1e9a6a930e70eaf090958b432 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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; }
    }
}