Merge pull request #3602 from leigh-pointer/ENH#3538-PgModDateActive
Start Date and Expiry Date for Module instances and Pages #3538
This commit is contained in:
		| @ -75,10 +75,16 @@ namespace Oqtane.Models | ||||
|         [NotMapped] | ||||
|         public string ContainerType { get; set; } | ||||
|  | ||||
|         [NotMapped] | ||||
|         public DateTime? EffectiveDate { get; set; } | ||||
|  | ||||
|         [NotMapped] | ||||
|         public DateTime? ExpiryDate { get; set; } | ||||
|  | ||||
|         #endregion | ||||
|  | ||||
|         #region SiteRouter properties | ||||
|          | ||||
|  | ||||
|         [NotMapped] | ||||
|         public string ModuleType { get; set; } | ||||
|         [NotMapped] | ||||
|  | ||||
| @ -82,6 +82,14 @@ namespace Oqtane.Models | ||||
|         public bool IsNavigation { get; set; } | ||||
|         public bool IsClickable { get; set; } | ||||
|         public int? UserId { get; set; } | ||||
|         /// <summary> | ||||
|         /// Start of when this assignment is valid. See also <see cref="ExpiryDate"/> | ||||
|         /// </summary> | ||||
|         public DateTime? EffectiveDate { get; set; } | ||||
|         /// <summary> | ||||
|         /// End of when this assignment is valid. See also <see cref="EffectiveDate"/> | ||||
|         /// </summary> | ||||
|         public DateTime? ExpiryDate { get; set; } | ||||
|         public bool IsPersonalizable { get; set; } | ||||
|  | ||||
|         #region IDeletable Properties | ||||
|  | ||||
| @ -41,7 +41,14 @@ namespace Oqtane.Models | ||||
|         /// Reference to a Razor Container which wraps this module instance. | ||||
|         /// </summary> | ||||
|         public string ContainerType { get; set; } | ||||
|  | ||||
|         /// <summary> | ||||
|         /// Start of when this assignment is valid. See also <see cref="ExpiryDate"/> | ||||
|         /// </summary> | ||||
|         public DateTime? EffectiveDate { get; set; } | ||||
|         /// <summary> | ||||
|         /// End of when this assignment is valid. See also <see cref="EffectiveDate"/> | ||||
|         /// </summary> | ||||
|         public DateTime? ExpiryDate { get; set; } | ||||
|         #region IDeletable Properties | ||||
|  | ||||
|         public string DeletedBy { get; set; } | ||||
|  | ||||
		Reference in New Issue
	
	Block a user
	 Shaun Walker
					Shaun Walker