12 lines
232 B
C#
12 lines
232 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace stupid.solutions;
|
|
|
|
[Serializable]
|
|
public class TemplateData
|
|
{
|
|
public string PresetName { get; set; }
|
|
|
|
public Dictionary<string, ItemTemplate> ItemTemplate { get; set; }
|
|
}
|