12 lines
246 B
C#
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; }
|
|
}
|
|
} |