summaryrefslogtreecommitdiff
path: root/DSACore/Models/Network/Group.cs
blob: 2b5993168fe3e02e25c27def171b8adc9943f28e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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 string Password { get; set; }
        public List<User> Users { get; set; } = new List<User>();
    }
}