blob: 3ca1e798b65ec013499d8a165ba110f4fc2ccc43 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.BL.DTO
{
public class IdsPackDTO : IdsPackDTOBase
{
public CartridgeTypeDTO CartridgeType { get; set; }
public IdsPackFormulaDTO IdsPackFormula { get; set; }
public LiquidTypeDTO LiquidType { get; set; }
public MidTankTypeDTO MidTankType { get; set; }
public DispenserDTO Dispenser { get; set; }
}
}
|