add support for trial periods

This commit is contained in:
Shaun Walker
2021-09-03 15:24:51 -04:00
parent 233da1508b
commit 07165ce68d
8 changed files with 85 additions and 11 deletions

View File

@ -76,5 +76,10 @@ namespace Oqtane.Models
/// The Url for purchasing the package ( if commercial )
/// </summary>
public string PaymentUrl { get; set; }
/// <summary>
/// The trial period in days ( if commercial )
/// </summary>
public int TrialPeriod { get; set; }
}
}