12 lines
268 B
C#
12 lines
268 B
C#
using LMS.Common.Enum;
|
|
|
|
namespace LMS.Repository.Software
|
|
{
|
|
public class ModifySoftwareControlValidityModel
|
|
{
|
|
public SoftwareControlEnum.SoftwareControlValidityEnum? ExpirationTime { get; set; }
|
|
|
|
public bool? IsForever { get; set; }
|
|
}
|
|
}
|