2024-12-27 21:50:13 +08:00
|
|
|
|
using LMS.Common.Enum;
|
|
|
|
|
|
|
|
|
|
|
|
namespace LMS.Repository.Software
|
|
|
|
|
|
{
|
|
|
|
|
|
public class ModifySoftwareControlValidityModel
|
|
|
|
|
|
{
|
|
|
|
|
|
public SoftwareControlEnum.SoftwareControlValidityEnum? ExpirationTime { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public bool? IsForever { get; set; }
|
2025-02-07 15:58:00 +08:00
|
|
|
|
|
|
|
|
|
|
public bool? IsTry { get; set; }
|
2024-12-27 21:50:13 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|