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

22 lines
617 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 MaterialRepairHistory
{
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 string Implementer { get; set; }
public bool IsFolder { get; set; }
public string ItemViewUrl { get; set; }
public string Task { get; set; }
}
}