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