21 lines
828 B
Plaintext
21 lines
828 B
Plaintext
using System;
|
|
using System.Collections.Generic;
|
|
namespace DTS.Common.Licensing.Messages
|
|
{
|
|
public class ValidationResult
|
|
{
|
|
public IEnumerable<ValidationFailure> ValidationFailures { get; set; }
|
|
public bool IsLicenseExpired { get; set; }
|
|
public bool IsLicenseVersionValid { get; set; }
|
|
public Version ProductVersion { get; set; }
|
|
public string LicenseVersion { get; set; }
|
|
public DateTime? LicenseExpiration { get; set; }
|
|
public bool IsValid { get; set; }
|
|
//FB 25723 Specify if the license file exist or not
|
|
public bool IsLicensed { get; set; } = true;
|
|
public string LicensedTo { get; set; }
|
|
public DataProLicensingEnums.LicenseType LicenseType { get; set; }
|
|
public Guid LicenseId { get; set; }
|
|
}
|
|
}
|