1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-25 06:42:22 -05:00
bitwarden/src/Core/Tokens/IBillingSyncTokenable.cs
2022-08-29 16:06:55 -04:00

8 lines
166 B
C#

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