Files
DP44/Common/DTS.Common.Licensing/.svn/pristine/ba/ba5157d2a128f0ef3aeb0b56f707a4ae38e0fd2e.svn-base

21 lines
828 B
Plaintext
Raw Normal View History

2026-04-17 14:55:32 -04:00
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; }
}
}