Files
DP44/Common/DTS.Common.Licensing/Messages/ValidationResult.cs
2026-04-17 14:55:32 -04:00

21 lines
828 B
C#

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; }
}
}