summaryrefslogtreecommitdiff
path: root/DSACore/Models/User.cs
blob: 105e56457e6ea1fb99145138cd4ab431ba482270 (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 User
    {
        public string Name { get; set; }
        public string Group { get; set; }
    }
}