You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
352 B
C#

6 months ago

using DS.Module.Core;
namespace DS.WMS.Core.Flow.Dtos
{
public class FlowCallback
{
public long BusinessId { get; set; }
public long? TemplateId { get; set; }
public int? ActivityType { get; set; }
public string ActivityName { get; set; }
public FlowStatusEnum FlowStatus { get; set; }
}
}