wasDAVClient – Blame information for rev 5

Subversion Repositories:
Rev:
Rev Author Line No. Line
5 office 1 ///////////////////////////////////////////////////////////////////////////
2 // Copyright (C) Wizardry and Steamworks 2016 - License: GNU GPLv3 //
3 // Please see: http://www.gnu.org/licenses/gpl.html for legal details, //
4 // rights of fair usage, the disclaimer and warranty conditions. //
5 ///////////////////////////////////////////////////////////////////////////
6 // Originally based on: WebDAV .NET client by Sergey Kazantsev
1 office 7  
5 office 8 using System;
9  
1 office 10 namespace wasDAVClient.Model
11 {
12 public class Item
13 {
14 public string Href { get; set; }
15 public DateTime? CreationDate { get; set; }
16 public string Etag { get; set; }
17 public bool IsHidden { get; set; }
18 public bool IsCollection { get; set; }
19 public string ContentType { get; set; }
20 public DateTime? LastModified { get; set; }
21 public string DisplayName { get; set; }
22 public long? ContentLength { get; set; }
23 }
3 office 24 }