mirror of
https://github.com/yawaflua/SkinsApi.git
synced 2025-12-09 03:49:32 +02:00
17 lines
410 B
C#
17 lines
410 B
C#
namespace SkinsApi.Models.SkinService
|
|
{
|
|
public class Property
|
|
{
|
|
public string name { get; set; }
|
|
public string value { get; set; }
|
|
}
|
|
|
|
public class MojangSessionProperty
|
|
{
|
|
public string id { get; set; }
|
|
public string name { get; set; }
|
|
public List<Property> properties { get; set; }
|
|
public List<object> profileActions { get; set; }
|
|
}
|
|
}
|