mirror of
https://github.com/bitwarden/server
synced 2025-12-27 05:33:17 +00: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; }
|
|
}
|