12 lines
211 B
C#
12 lines
211 B
C#
namespace YLErp.Configuration.Enums
|
|
{
|
|
/// <summary>
|
|
/// 平滑过渡日历模式
|
|
/// </summary>
|
|
public enum SmoothingDaycountMode
|
|
{
|
|
TradingDay = 0,
|
|
CalendarDay = 1
|
|
}
|
|
}
|