using CsvHelper.Configuration.Attributes; namespace AsbCloudInfrastructure.Tests.MapData { public class DataSaubStatDrillingQualityDtoMap { [Name("id_telemetry")] public int IdTelemetry { get; set; } [Name("depth_start")] public float DepthStart { get; set; } [Name("depth_end")] public float DepthEnd { get; set; } [Name("depth_drilling_quality")] public float DepthDrillingQuality { get; set; } [Name("id_feed_regulator")] public short? IdFeedRegulator { get; set; } } }