2022-12-20 15:22:02 +01:00
|
|
|
namespace zero.Numbers;
|
|
|
|
|
|
2022-12-21 00:45:41 +01:00
|
|
|
public class NumberOptions : Dictionary<string, NumberOptionsItem>
|
2022-12-20 15:22:02 +01:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public class NumberOptionsItem
|
|
|
|
|
{
|
|
|
|
|
public string Template { get; set; } = "{number}";
|
|
|
|
|
|
|
|
|
|
public long StartNumber { get; set; } = 1;
|
|
|
|
|
|
|
|
|
|
public int MinLength { get; set; } = 1;
|
2023-06-16 17:28:24 +02:00
|
|
|
|
|
|
|
|
public int Step { get; set; } = 1;
|
2023-06-22 11:12:08 +02:00
|
|
|
|
|
|
|
|
public bool ResetPerYear { get; set; } = false;
|
2022-12-20 15:22:02 +01:00
|
|
|
}
|