summaryrefslogtreecommitdiff
path: root/DSACore/Models/Group.cs
blob: 27d7ee7af6e4a8c6b16db64e75a2a755f958ac1d (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
{
    public class Group
    {
        public string Name { get; set; }
        public List<User> Users { get; set; }= new List<User>();
    }
}