19 lines
358 B
C#
19 lines
358 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace YLErp.Modules.CalcPriceShowConfigModule.Dto
|
|
{
|
|
public class CalcPriceCfgSetIsEnableReq
|
|
{
|
|
public int Id { get; set; }
|
|
}
|
|
|
|
public class CalcPriceCfgDeleteReq
|
|
{
|
|
public int Id { get; set; }
|
|
}
|
|
}
|