Files
SkinsApi/Models/SkinService/MojangSessionProperty.cs
Dmitriy yawaflua Andreev 3c37e25485 Add project files.
2024-07-31 07:26:18 +03:00

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; }
}
}