mirror of
https://github.com/leiurayer/downkyi.git
synced 2025-03-23 15:50:12 +08:00
10 lines
172 B
C#
10 lines
172 B
C#
namespace DownKyi.Core.Settings
|
|
{
|
|
public enum OrderFormat
|
|
{
|
|
NOT_SET = 0,
|
|
NATURAL, // 自然数
|
|
LEADING_ZEROS, // 前导零填充
|
|
}
|
|
}
|