wasDAVClient – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 using System;
2  
3 namespace wasDAVClient.Model
4 {
5 public class Item
6 {
7 public string Href { get; set; }
8 public DateTime? CreationDate { get; set; }
9 public string Etag { get; set; }
10 public bool IsHidden { get; set; }
11 public bool IsCollection { get; set; }
12 public string ContentType { get; set; }
13 public DateTime? LastModified { get; set; }
14 public string DisplayName { get; set; }
15 public long? ContentLength { get; set; }
16 }
17 }