aboutsummaryrefslogtreecommitdiff
path: root/src/Data/DevHive.Data.Models/Chat.cs
blob: d68981f408203c92b0bdb978ac4a9fc67e1a014d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace DevHive.Data.Models
{
	public class Chat
	{
		public HashSet<User> ChatMembers { get; set; }

		public List<Message> Messages { get; set; }

		public string ChatName { get; set; }
	}
}