using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.BL.DTO { public class BrushStopDTO : BrushStopDTOBase { protected override bool OnShouldActionLogIgnore(string propName) { return propName == nameof(Corrected); } protected override string OnGetActionLogName() { return $"BrushStop '{StopIndex}'"; } } }