Folder and file management service
This commit is contained in:
@ -7,6 +7,8 @@ namespace Oqtane.Models
|
||||
public int FileId { get; set; }
|
||||
public int FolderId { get; set; }
|
||||
public string Name { get; set; }
|
||||
public string Extension { get; set; }
|
||||
public int Size { get; set; }
|
||||
|
||||
public string CreatedBy { get; set; }
|
||||
public DateTime CreatedOn { get; set; }
|
||||
|
@ -11,6 +11,7 @@ namespace Oqtane.Models
|
||||
public string Name { get; set; }
|
||||
public string Path { get; set; }
|
||||
public int Order { get; set; }
|
||||
public bool IsSystem { get; set; }
|
||||
|
||||
public string CreatedBy { get; set; }
|
||||
public DateTime CreatedOn { get; set; }
|
||||
|
@ -8,7 +8,7 @@ namespace Oqtane.Models
|
||||
public int SiteId { get; set; }
|
||||
public int TenantId { get; set; }
|
||||
public string Name { get; set; }
|
||||
public string Logo { get; set; }
|
||||
public int? LogoFileId { get; set; }
|
||||
public string DefaultThemeType { get; set; }
|
||||
public string DefaultLayoutType { get; set; }
|
||||
public string DefaultContainerType { get; set; }
|
||||
|
@ -9,6 +9,9 @@ namespace Oqtane.Models
|
||||
public string Username { get; set; }
|
||||
public string DisplayName { get; set; }
|
||||
public string Email { get; set; }
|
||||
public int? PhotoFileId { get; set; }
|
||||
public DateTime? LastLoginOn { get; set; }
|
||||
public string LastIPAddress { get; set; }
|
||||
|
||||
[NotMapped]
|
||||
public int SiteId { get; set; }
|
||||
|
Reference in New Issue
Block a user