2022-03-19 19:58:10 +04:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
2022-03-20 10:10:44 +04:00
|
|
|
|
namespace ToolsModule.ManagmentEntity
|
2022-03-19 19:58:10 +04:00
|
|
|
|
{
|
|
|
|
|
public interface IErrors
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Перечень ошибок при выполнении операции
|
|
|
|
|
/// </summary>
|
|
|
|
|
List<(string Title, string Message)> Errors { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|