13 lines
265 B
C#
13 lines
265 B
C#
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;
|
|
}
|