mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-06-10 07:32:49 +00:00
New PCK Center API
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace API.PCKCenter.model
|
||||
{
|
||||
public class PCKCenterJSON
|
||||
{
|
||||
public Dictionary<string, EntryInfo> Data { get; set; }
|
||||
}
|
||||
|
||||
public class EntryInfo
|
||||
{
|
||||
public string Name;
|
||||
public string Author;
|
||||
public string Description;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user