New PCK Center API

This commit is contained in:
Felix Miller
2022-06-05 18:03:05 -04:00
parent 9ee6bab98f
commit a0d9c9cb8e
10 changed files with 323 additions and 179 deletions

View File

@@ -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;
}
}