summaryrefslogtreecommitdiff
path: root/DSACore/Models/Network/Group.cs
blob: 40f5aeb5bfcb1e0c4a4ae78e0af8cde77b18addc (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>();
    }
}