mirror of
https://github.com/yawaflua/SkinsApi.git
synced 2025-12-09 03:49:32 +02:00
11 lines
219 B
C#
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; }
|
|
}
|
|
}
|