mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-05-22 18:35:30 +00:00
15 lines
287 B
C#
15 lines
287 B
C#
namespace PckStudio.Core.Skin
|
|
{
|
|
public sealed class SkinMetaData
|
|
{
|
|
public string Name { get; }
|
|
public string Theme { get; }
|
|
|
|
public SkinMetaData(string name, string theme)
|
|
{
|
|
Name = name;
|
|
Theme = theme;
|
|
}
|
|
}
|
|
}
|