using SWRIS.Enums; using System; namespace SWRIS.Dtos { public class SimpleRecordDto { public int Id { get; set; } public string RopeName { get; set; } public DateTime Time { get; set; } public RiskLevel RiskLevel { get; set; } public string Description { get; set; } public double DetectionLength { get; set; } public bool IsNew { get; set; } } }