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

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