TrueCraft/TrueCraft.Core/TrueCraftUser.cs
2015-06-02 17:52:22 -06:00

12 lines
246 B
C#

using System;
namespace TrueCraft.Core
{
public class TrueCraftUser
{
public static string AuthServer = "http://truecraft.io";
public string Username { get; set; }
public string SessionId { get; set; }
}
}