Files
riversong-code-showcase/Source/Riversong/Game/UI/Panels/BuildingPanel/StoragePanelModel.cs
2026-05-21 16:03:55 +02:00

9 lines
215 B
C#

using System.Collections.Generic;
namespace DanieleMarotta.RiversongCodeShowcase
{
public class StoragePanelModel : UIModel
{
public List<StoragePanelProductModel> Products { get; } = new();
}
}