Item Attributes

This commit is contained in:
2022-04-01 21:46:55 +02:00
parent 70afc3880e
commit 7ff3898bd9
22 changed files with 178 additions and 40 deletions

View File

@@ -3,15 +3,17 @@ using FileTime.Core.Services;
namespace FileTime.Core.Models
{
public record Element
(string Name,
public record Element(
string Name,
string DisplayName,
FullName FullName,
NativePath NativePath,
FullName Parent,
bool IsHidden,
bool IsExists,
DateTime? CreatedAt,
SupportsDelete CanDelete,
bool CanRename,
string? Attributes,
IContentProvider Provider) : IElement;
}