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

namespace DSACore.Models.Database
{
    public class Group
    {
        public string Name { get; set; }
        public string Discord { get; set; }
        public string Password { get; set; }
        public int Id { get; set; }
        public List<GroupChar> Chars { get; set; }= new List<GroupChar>();
    }
}