123456789101112131415161718192021222324 |
- using System;
- namespace Vinno.vCloud.Common.License.Licenses
- {
- /// <summary>
- /// license expiration info
- /// </summary>
- public class LicenseExpirationInfo
- {
- /// <summary>
- /// Get or set available days
- /// </summary>
- public int AvailableDays { get; set; }
- /// <summary>
- /// Get or set expiration local date
- /// </summary>
- public DateTime LocalExpirationDate { get; set; }
- /// <summary>
- /// Get or set it has expired
- /// </summary>
- public bool HasExpired { get; set; }
- }
- }
|