Browse Source

Merge pull request #20333 from abpframework/issue-4588

Add `LicenseStartTime` to `DeveloperApiKeyResult`
pull/20334/head
Berkan Sasmaz 2 years ago
committed by GitHub
parent
commit
75f8ecf877
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 1
      framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Licensing/DeveloperApiKeyResult.cs

1
framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Licensing/DeveloperApiKeyResult.cs

@ -8,6 +8,7 @@ public class DeveloperApiKeyResult
public string OrganizationName { get; set; }
public string ApiKey { get; set; }
public DateTime? LicenseEndTime { get; set; }
public DateTime? LicenseStartTime { get; set; }
public bool CanDownloadSourceCode { get; set; }
public string LicenseCode { get; set; }
public string ErrorMessage { get; set; }

Loading…
Cancel
Save