blob: c931e7023fac0072fe80ea01d5b462a8e0ddaa5d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace DSACore.Models.Database
{
public class Roll
{
private string[] Skills { get; set; } = new string[3];
}
}
|