remove unecessary using
This commit is contained in:
@ -34,11 +34,9 @@ namespace Oqtane.Models
|
||||
[NotMapped]
|
||||
public bool IsDeleted { get; set; }
|
||||
|
||||
public DateTime CreatedOn { get; set; }
|
||||
|
||||
public List<SearchContentProperty> SearchContentProperties { get; set; }
|
||||
|
||||
public List<SearchContentWord> SearchContentWords { get; set; }
|
||||
public DateTime CreatedOn { get; set; }
|
||||
|
||||
[NotMapped]
|
||||
public int TenantId { get; set; }
|
||||
@ -46,6 +44,8 @@ namespace Oqtane.Models
|
||||
[NotMapped]
|
||||
public string UniqueKey => $"{TenantId}:{SiteId}:{EntityName}:{EntityId}";
|
||||
|
||||
public List<SearchContentWord> SearchContentWords { get; set; }
|
||||
|
||||
// constructors
|
||||
public SearchContent() { }
|
||||
|
||||
|
Reference in New Issue
Block a user