mirror of
https://github.com/bitwarden/server.git
synced 2025-07-02 16:42:50 -05:00

* [EC-634] Extract GenerateLicenseAsync to a query (#2373) * [EC-637] Add license sync to server (#2453) * [EC-1036] Show correct license sync date (#2626) * Update method name per new pattern
9 lines
252 B
C#
9 lines
252 B
C#
using Bit.Core.Entities;
|
|
|
|
namespace Bit.Core.OrganizationFeatures.OrganizationConnections.Interfaces;
|
|
|
|
public interface IValidateBillingSyncKeyCommand
|
|
{
|
|
Task<bool> ValidateBillingSyncKeyAsync(Organization organization, string billingSyncKey);
|
|
}
|