aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.BL/DTO/DispenserDTO.cs
blob: af9c9c7f2ff940b94085de32c48128f53f7fd072 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.BL.ActionLogs;

namespace Tango.BL.DTO
{
    public class DispenserDTO : DispenserDTOBase
    {
        [ActionLogIgnore]
        public DispenserTypeDTO DispenserType { get; set; }
    }
}