using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace EMIS.ViewModel.SystemView { public class WorkflowStatusView { public int? ID { get; set; } public string Name { get; set; } public string Description { get; set; } } }