femto-backend/Femto.Common/Domain/IRule.cs
2025-05-03 15:38:57 +02:00

8 lines
No EOL
109 B
C#

namespace Femto.Common.Domain;
public interface IRule
{
bool Check();
string Message { get; }
}