13 lines
430 B
C#
13 lines
430 B
C#
namespace RB_MES_API.Models.Cloud
|
|
{
|
|
public class RequestData
|
|
{
|
|
public string CreateOrgId { get; set; } = "0";
|
|
public string[] Numbers { get; set; } = new string[0];
|
|
public string Ids { get; set; } = string.Empty;
|
|
public List<PkEntryId> PkEntryIds { get; set; }
|
|
public bool NetworkCtrl { get; set; } = false;
|
|
public bool IgnoreInterationFlag { get; set; } = true;
|
|
}
|
|
}
|