You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
453 B
C#
21 lines
453 B
C#
namespace Myshipping.Application.Service.Fee.Dto
|
|
{
|
|
public class FeeUnitDto
|
|
{
|
|
public FeeUnitDto(string code, string name)
|
|
{
|
|
Code = code;
|
|
Name = name;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 费用单位编码
|
|
/// </summary>
|
|
public string Code { get; set; }
|
|
/// <summary>
|
|
/// 费用单位名称
|
|
/// </summary>
|
|
public string Name { get; set; }
|
|
}
|
|
}
|