9 lines
215 B
C#
9 lines
215 B
C#
using System.Collections.Generic;
|
|
|
|
namespace DanieleMarotta.RiversongCodeShowcase
|
|
{
|
|
public class StoragePanelModel : UIModel
|
|
{
|
|
public List<StoragePanelProductModel> Products { get; } = new();
|
|
}
|
|
} |