Taylohtio/IDP/webapi/idpsp.Abstract/Model/FlatDocsFolder.cs

23 lines
653 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Taloyhtio.IDP.SPApi.Model
{
public class FlatDocsFolder
{
public int Id { get; set; }
public string Title { get; set; }
public DateTime CreatedOn { get; set; }
public DateTime ModifiedOn { get; set; }
public DateTime? CompletedOn { get; set; }
public int DocsCount { get; set; }
public bool IsFolder { get; set; }
public string ItemViewUrl { get; set; }
public string Implementer { get; set; }
public string Task { get; set; }
}
}