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

10 lines
172 B
C#

namespace SkinsApi.Interfaces.SkinService
{
public interface IProfile
{
public string id { get; set; }
public string name { get; set; }
}
}