Files
2026-07-21 14:14:44 +07:00

13 lines
356 B
C#

namespace Indotalent.Infrastructure.AutoNumberGenerator;
public interface IAutoNumberGenerator
{
string? EntityName { get; set; }
int? Year { get; set; }
int? Month { get; set; }
long? CurrentSequence { get; set; }
string? PrefixTemplate { get; set; }
string? SuffixTemplate { get; set; }
int? PaddingLength { get; set; }
}