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