using System.Collections.Generic; namespace ToolsModule.Interfaces { public interface IErrors { /// /// Перечень ошибок при выполнении операции /// List<(string Title, string Message)> Errors { get; } } }