init
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user