mirror of
https://github.com/bitwarden/server.git
synced 2025-04-25 06:42:22 -05:00
8 lines
166 B
C#
8 lines
166 B
C#
namespace Bit.Core.Tokens;
|
|
|
|
public interface IBillingSyncTokenable
|
|
{
|
|
public Guid OrganizationId { get; set; }
|
|
public string BillingSyncKey { get; set; }
|
|
}
|