AK056/Assets/script/data/StorageRequestEntity.cs
2025-05-07 11:20:40 +08:00

13 lines
249 B
C#

using System.Collections.Generic;
[System.Serializable]
public class StorageRequestEntity
{
public string systemCode = "DT";
public string houseCode = "DT";
public bool excludeEmptyLoc = false;
public List<string> rows = new();
}