Add project files.

This commit is contained in:
Dmitriy yawaflua Andreev
2024-07-31 07:26:18 +03:00
parent f5be6053ea
commit 3c37e25485
19 changed files with 819 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
using SkinsApi.Interfaces.SkinService;
namespace SkinsApi.Models.SkinService
{
public class MojangProfile : IProfile
{
public string id { get; set; }
public string name { get; set; }
}
}

View File

@@ -0,0 +1,16 @@
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; }
}
}