remove unecessary using
This commit is contained in:
parent
497f9ca0b1
commit
85e7ac7cd7
|
@ -3,7 +3,6 @@ using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Microsoft.EntityFrameworkCore;
|
using Microsoft.EntityFrameworkCore;
|
||||||
using Microsoft.EntityFrameworkCore.Query;
|
|
||||||
using Oqtane.Models;
|
using Oqtane.Models;
|
||||||
using Oqtane.Shared;
|
using Oqtane.Shared;
|
||||||
|
|
||||||
|
|
|
@ -34,11 +34,9 @@ namespace Oqtane.Models
|
||||||
[NotMapped]
|
[NotMapped]
|
||||||
public bool IsDeleted { get; set; }
|
public bool IsDeleted { get; set; }
|
||||||
|
|
||||||
public DateTime CreatedOn { get; set; }
|
|
||||||
|
|
||||||
public List<SearchContentProperty> SearchContentProperties { get; set; }
|
public List<SearchContentProperty> SearchContentProperties { get; set; }
|
||||||
|
|
||||||
public List<SearchContentWord> SearchContentWords { get; set; }
|
public DateTime CreatedOn { get; set; }
|
||||||
|
|
||||||
[NotMapped]
|
[NotMapped]
|
||||||
public int TenantId { get; set; }
|
public int TenantId { get; set; }
|
||||||
|
@ -46,6 +44,8 @@ namespace Oqtane.Models
|
||||||
[NotMapped]
|
[NotMapped]
|
||||||
public string UniqueKey => $"{TenantId}:{SiteId}:{EntityName}:{EntityId}";
|
public string UniqueKey => $"{TenantId}:{SiteId}:{EntityName}:{EntityId}";
|
||||||
|
|
||||||
|
public List<SearchContentWord> SearchContentWords { get; set; }
|
||||||
|
|
||||||
// constructors
|
// constructors
|
||||||
public SearchContent() { }
|
public SearchContent() { }
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user