using System.ComponentModel;
|
using System.Threading;
|
using VirtualConveyor.Common.Entity;
|
using System;
|
using System.Linq;
|
|
namespace VirtualConveyor.Conveyor.Entity
|
{
|
public class TaskEntity : BindableBase
|
{
|
|
public string TaskId { get; set; }
|
|
public string FromPort { get; set; }
|
|
|
public string ToPort { get; set; }
|
|
|
|
public int Status { get; set; }
|
|
|
|
public int Label { get; set; }
|
|
|
|
|
|
|
|
|
|
|
}
|
}
|