14 lines
311 B
C#
14 lines
311 B
C#
using LMS.Common.Enums;
|
|
|
|
namespace LMS.Repository.Software
|
|
{
|
|
public class ModifySoftwareControlValidityModel
|
|
{
|
|
public SoftwareControlEnum.SoftwareControlValidityEnum? ExpirationTime { get; set; }
|
|
|
|
public bool? IsForever { get; set; }
|
|
|
|
public bool? IsTry { get; set; }
|
|
}
|
|
}
|