mirror of
https://git.alee14.me/shiftos-archive/ShiftOS_TheReturn.git
synced 2025-01-23 18:22:17 +00:00
15 lines
280 B
C#
15 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; }
|
|||
|
}
|
|||
|
}
|