File size: 249 Bytes
b1b3bae
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10

namespace DWSIM.ProFeatures
{
    public class LicenseResponseModel
    {
        public bool? hasExistingLicense { get; set; }
        public bool? trialLicenseCreated { get; set; }
        public bool? notEligibleForTrial { get; set; }
    }
}