notification service and user management improvements
This commit is contained in:
30
Oqtane.Shared/Models/Folder.cs
Normal file
30
Oqtane.Shared/Models/Folder.cs
Normal file
@ -0,0 +1,30 @@
|
||||
using System;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace Oqtane.Models
|
||||
{
|
||||
public class Folder : IAuditable
|
||||
{
|
||||
public int FolderId { get; set; }
|
||||
public int SiteId { get; set; }
|
||||
public int? ParentId { get; set; }
|
||||
public string Name { get; set; }
|
||||
public string Path { get; set; }
|
||||
public int Order { get; set; }
|
||||
|
||||
public string CreatedBy { get; set; }
|
||||
public DateTime CreatedOn { get; set; }
|
||||
public string ModifiedBy { get; set; }
|
||||
public DateTime ModifiedOn { get; set; }
|
||||
public string DeletedBy { get; set; }
|
||||
public DateTime? DeletedOn { get; set; }
|
||||
public bool IsDeleted { get; set; }
|
||||
|
||||
[NotMapped]
|
||||
public string Permissions { get; set; }
|
||||
[NotMapped]
|
||||
public int Level { get; set; }
|
||||
[NotMapped]
|
||||
public bool HasChildren { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user