10 lines
240 B
C#
10 lines
240 B
C#
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; }
|
|
} |