Re-write
This commit is contained in:
16
Shared/Models/Properties/IFileHolder.cs
Normal file
16
Shared/Models/Properties/IFileHolder.cs
Normal file
@ -0,0 +1,16 @@
|
||||
namespace View_by_Distance.Shared.Models.Properties;
|
||||
|
||||
public interface IFileHolder
|
||||
{
|
||||
|
||||
public DateTime CreationTime { get; }
|
||||
public string? DirectoryName { get; }
|
||||
public bool Exists { get; }
|
||||
public string ExtensionLowered { get; }
|
||||
public string FullName { get; }
|
||||
public DateTime LastWriteTime { get; }
|
||||
public long? Length { get; }
|
||||
public string Name { get; }
|
||||
public string NameWithoutExtension { get; }
|
||||
|
||||
}
|
Reference in New Issue
Block a user