222
schangxiang@126.com
2025-06-09 f2970f356ea13811ce43f42d2fde128e92f73aae
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
namespace iWare.Authorize.Dto
{
    public class ValidateLicenseInput
    {
        /// <summary>
        /// 预警天数配置(选填)
        /// </summary>
        public int? WaringDays { get; set; }
 
        /// <summary>
        /// 授权文件夹名(选填)
        /// </summary>
        public string? LicenseFolerName { get; set; }
    }
}