11 lines
272 B
C#
11 lines
272 B
C#
namespace PowderCoating.Application.DTOs.QuickBooks;
|
|
|
|
/// <summary>
|
|
/// Result of validating an IIF file before import.
|
|
/// </summary>
|
|
public class ValidationResultDto
|
|
{
|
|
public bool IsValid { get; set; }
|
|
public List<ImportErrorDto> Errors { get; set; } = new();
|
|
}
|