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

@@ -2,6 +2,6 @@ namespace FileTime.Core.Models
{
public interface IFileElement : IElement
{
long Size { get; }
}
}

View File

@@ -12,8 +12,10 @@ namespace FileTime.Core.Models
FullName? Parent { get; }
bool IsHidden { get; }
bool IsExists { get; }
DateTime? CreatedAt { get; }
SupportsDelete CanDelete { get; }
bool CanRename { get; }
IContentProvider Provider { get; }
string? Attributes { get; }
}
}