aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.Objects/ClientSave.cs
blob: 08f7a097acce2deda5fdc62af104af4c1e45d33f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ShiftOS.Objects
{
    public class ClientSave
    {
        public string Username { get; set; }
        public string Password { get; set; }
    }
}