mirror of
https://github.com/Readarr/Readarr
synced 2026-01-06 23:54:49 +01:00
22 lines
482 B
C#
22 lines
482 B
C#
using System;
|
|
|
|
namespace NzbDrone.Common.Disk
|
|
{
|
|
public class FileSystemModel
|
|
{
|
|
public FileSystemEntityType Type { get; set; }
|
|
public string Name { get; set; }
|
|
public string Path { get; set; }
|
|
public string Extension { get; set; }
|
|
public long Size { get; set; }
|
|
public DateTime? LastModified { get; set; }
|
|
}
|
|
|
|
public enum FileSystemEntityType
|
|
{
|
|
Parent,
|
|
Drive,
|
|
Folder,
|
|
File
|
|
}
|
|
}
|