aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Models/UserModel.cs
blob: 5fbda6f12762e20e13e69eb617fea9f8d2dae38a (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.Text;
using System.Threading.Tasks;

namespace Tango.MachineStudio.ThreadExtensions.Models
{
    public class UserModel
    {
        public String Guid { get; set; }
       
        public string Name { get; set; }
    }
}