29 lines
784 B
C#
29 lines
784 B
C#
using System.Collections.ObjectModel;
|
|
using FileTime.Core.ContentAccess;
|
|
using FileTime.Core.Enums;
|
|
using FileTime.Core.Timeline;
|
|
|
|
namespace FileTime.Core.Models;
|
|
|
|
public record Element(
|
|
string Name,
|
|
string DisplayName,
|
|
FullName FullName,
|
|
NativePath NativePath,
|
|
AbsolutePath? Parent,
|
|
bool IsHidden,
|
|
bool IsExists,
|
|
DateTime? CreatedAt,
|
|
DateTime? ModifiedAt,
|
|
SupportsDelete CanDelete,
|
|
bool CanRename,
|
|
string? Attributes,
|
|
IContentProvider Provider,
|
|
PointInTime PointInTime,
|
|
ObservableCollection<Exception> Exceptions,
|
|
ReadOnlyExtensionCollection Extensions) : IElement
|
|
{
|
|
public AbsolutePathType Type => AbsolutePathType.Element;
|
|
|
|
public IItem WithParent(AbsolutePath parent) => this with { Parent = parent };
|
|
} |