/////////////////////////////////////////////////////////////////////////// // Copyright (C) Wizardry and Steamworks 2016 - License: GNU GPLv3 // // Please see: http://www.gnu.org/licenses/gpl.html for legal details, // // rights of fair usage, the disclaimer and warranty conditions. // /////////////////////////////////////////////////////////////////////////// // Originally based on: WebDAV .NET client by Sergey Kazantsev using System; namespace wasDAVClient.Model { public class Item { public string Href { get; set; } public DateTime? CreationDate { get; set; } public string Etag { get; set; } public bool IsHidden { get; set; } public bool IsCollection { get; set; } public string ContentType { get; set; } public DateTime? LastModified { get; set; } public string DisplayName { get; set; } public long? ContentLength { get; set; } } }