1
0
Fork 0
Workship/Workshoppa/GameData/WorkshopCraftPhase.cs

10 lines
236 B
C#

using System.Collections.Generic;
namespace Workshoppa.GameData;
internal sealed class WorkshopCraftPhase
{
public required string Name { get; init; }
public required IReadOnlyList<WorkshopCraftItem> Items { get; init; }
}