using HStation.Dto.Assets;
|
using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace HStation.Dto
|
{
|
public class AddPumpPartMainExInput
|
{
|
public AddAssetsPumpPartMainInput PartMain { get; set; }
|
|
|
public List<AddAssetsPumpPropContentInput> PropContent { get; set; }
|
|
|
public AddAssetsPumpMainAndPartMapInput PartMapping { get; set; }
|
|
}
|
}
|