wasDAVClient – Rev 1

Subversion Repositories:
Rev:
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; }
    }
}