mirror of
https://github.com/bitwarden/server.git
synced 2026-02-05 16:43:14 +08:00
11 lines
230 B
C#
11 lines
230 B
C#
|
|
using System;
|
|||
|
|
|
|||
|
|
namespace Bit.Core.Models.OrganizationConnectionConfigs
|
|||
|
|
{
|
|||
|
|
public class BillingSyncConfig
|
|||
|
|
{
|
|||
|
|
public string BillingSyncKey { get; set; }
|
|||
|
|
public Guid CloudOrganizationId { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|