mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-05-23 20:54:32 +00:00
21 lines
394 B
C#
21 lines
394 B
C#
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;
|
|
}
|
|
}
|