DepartmentProject/DepartmentPortal/Common/ToolsModule/ManagmentEntity/IErrors.cs

12 lines
313 B
C#
Raw Normal View History

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