feat: add interface for check configured settings

This commit is contained in:
Polianin Nikita 2024-05-28 06:28:24 +03:00
parent 6716ee9cf0
commit dfdc2ec109

View File

@ -0,0 +1,6 @@
namespace Mirea.Api.Endpoint.Configuration.General.Interfaces;
public interface IIsConfigured
{
bool IsConfigured();
}