This commit is contained in:
Putoo
2026-05-27 18:26:50 +08:00
parent 36a7575990
commit 0d5443ef36
28 changed files with 1043 additions and 25 deletions

View File

@@ -0,0 +1,9 @@
namespace Application.Web;
public class StoreBuyParms
{
public int npcId { get; set; }
public string storeId { get; set; }
public int count { get; set; }
}

View File

@@ -0,0 +1,10 @@
namespace Application.Web;
public class StoreSaleParms
{
public int npcId { get; set; }
public int count { get; set; }
public string search { get; set; }
public int type { get; set; }
public string id { get; set; }
}