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

11 lines
219 B
C#

using SkinsApi.Interfaces.SkinService;
namespace SkinsApi.Models.SkinService
{
public class MojangProfile : IProfile
{
public string id { get; set; }
public string name { get; set; }
}
}