mirror of
https://github.com/moparisthebest/keepass2android
synced 2025-02-27 08:41:45 -05:00
16 lines
359 B
C#
16 lines
359 B
C#
using System;
|
|
|
|
namespace keepass2android.Io
|
|
{
|
|
public class FileDescription
|
|
{
|
|
public string Path { get; set; }
|
|
public bool IsDirectory { get; set; }
|
|
public DateTime LastModified { get; set; }
|
|
public bool CanRead { get; set; }
|
|
public bool CanWrite { get; set; }
|
|
public long SizeInBytes { get; set; }
|
|
|
|
public String DisplayName { get; set; }
|
|
}
|
|
} |