using System.Text.Json.Serialization; namespace SPMS.Application.DTOs.File; public class CsvValidateErrorDto { [JsonPropertyName("row")] public int Row { get; set; } [JsonPropertyName("error")] public string Error { get; set; } = string.Empty; }