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,9 @@
using SkinsApi.Sources;
namespace SkinsApi.Interfaces.Services
{
public interface ISkinService
{
Task<Skin> GetSkinStreamAsync(string data);
}
}

View File

@@ -0,0 +1,9 @@
namespace SkinsApi.Interfaces.SkinService
{
public interface IProfile
{
public string id { get; set; }
public string name { get; set; }
}
}