using System; using System.Collections.Generic; using System.Web.Mvc; namespace Yavsc.Model.WorkFlow { /// /// Status change. /// public class StatusChange { /// /// Gets or sets the status. /// /// The status. public int Status { get; set;} /// /// Gets or sets the date. /// /// The date. public DateTime date { get; set;} } }