21 lines
517 B
C#
21 lines
517 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 NotificationsAndOrders
|
|
{
|
|
public string ListName { get; set; }
|
|
public string Created { get; set; }
|
|
public string Status { get; set; }
|
|
public string StatusImage { get; set; }
|
|
public string Ended { get; set; }
|
|
public string Url { get; set; }
|
|
public string RowID { get; set; }
|
|
|
|
}
|
|
}
|