This repository has been archived on 2025-01-01. You can view files and clone it, but cannot push or open issues or pull requests.
ShiftOS_TheReturn/ShiftOS.Objects/ClientSave.cs
2017-01-08 15:38:54 -08:00

14 lines
280 B
C#

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; }
}
}