6 lines
165 B
C#
6 lines
165 B
C#
namespace Wallet;
|
|
|
|
public record ItemSectionConfiguration
|
|
{
|
|
public IList<ItemEntryConfiguration> Entries { get; set; } = new List<ItemEntryConfiguration>();
|
|
} |