1
0
mirror of https://github.com/bitwarden/server synced 2025-12-27 13:43:18 +00:00
Files
server/src/Core/Tokens/IBillingSyncTokenable.cs
2022-08-29 14:53:16 -04:00

8 lines
166 B
C#

namespace Bit.Core.Tokens;
public interface IBillingSyncTokenable
{
public Guid OrganizationId { get; set; }
public string BillingSyncKey { get; set; }
}