summaryrefslogtreecommitdiff
path: root/Juick/Api/User.cs
blob: dd8bae256b88f191d0c4d51d54e7f7e4f90b2308 (plain) (blame)
1
2
3
4
5
6
7
8
9
namespace JuickApi
{
    public class User
    {
        public int Uid { get; set; }
        public string UName { get; set; }
        public string Fullname { get; set; }
    }
}