summaryrefslogtreecommitdiff
path: root/DSACore/Models/Network/Group.cs
blob: eab02cdd03c12d0b985b7c10d402815ac9431f81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;

namespace DSACore.Models.Network
{
    public class Group
    {
        public string Name { get; set; }
        public List<User> Users { get; set; } = new List<User>();
    }
}