18 lines
301 B
C#
18 lines
301 B
C#
namespace zero.Numbers;
|
|
|
|
public class NumberOptions : List<NumberOptionsItem>
|
|
{
|
|
}
|
|
|
|
|
|
public class NumberOptionsItem
|
|
{
|
|
public string Alias { get; set; }
|
|
|
|
public string Template { get; set; } = "{number}";
|
|
|
|
public long StartNumber { get; set; } = 1;
|
|
|
|
public int MinLength { get; set; } = 1;
|
|
}
|