mirror of
https://github.com/bitwarden/server.git
synced 2024-11-29 13:25:17 +01:00
8 lines
173 B
C#
8 lines
173 B
C#
|
namespace Bit.Core.Services;
|
|||
|
|
|||
|
public interface IOrganizationDomainService
|
|||
|
{
|
|||
|
Task ValidateOrganizationsDomainAsync();
|
|||
|
Task OrganizationDomainMaintenanceAsync();
|
|||
|
}
|