This repository has been archived on 2024-06-13. You can view files and clone it, but cannot push or open issues or pull requests.
TrueCraft/TrueCraft.Core/TrueCraftUser.cs
Drew DeVault 5c48a2e115 Switch launcher to HTTPS
Also fixes #219
2015-11-08 08:30:23 -05:00

12 lines
247 B
C#

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