Files
StructureHelper/StructureHelperCommon/Infrastructures/Interfaces/ICheckLogic.cs
2024-08-04 23:01:10 +05:00

25 lines
561 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperCommon.Infrastructures.Interfaces
{
/// <summary>
/// Logic for checking entities
/// </summary>
public interface ICheckLogic : ILogic
{
/// <summary>
/// Text result of checking
/// </summary>
string CheckResult { get; }
/// <summary>
/// Start checking process
/// </summary>
/// <returns></returns>
bool Check();
}
}