Laying down the groundwork for data

This commit is contained in:
2025-11-29 23:22:04 -06:00
parent c749434d07
commit 7c98bc3a89
8 changed files with 97 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
using System.Collections.Generic;
namespace SessionZero.Data;
public class DatapackMetadata
{
public required string Name { get; set; }
public required string Id { get; set; }
public required string Description { get; set; }
public required string Version { get; set; }
public required string[] CompatibleSystems { get; set; }
public string Uuid { get; set; } = string.Empty;
}