mirror of
https://github.com/bitwarden/server.git
synced 2026-02-12 20:03:25 +08:00
20 lines
486 B
C#
20 lines
486 B
C#
using System;
|
|
using Bit.Core.Enums;
|
|
|
|
namespace Bit.Core.Entities
|
|
{
|
|
public interface ISubscriber
|
|
{
|
|
Guid Id { get; }
|
|
GatewayType? Gateway { get; set; }
|
|
string GatewayCustomerId { get; set; }
|
|
string GatewaySubscriptionId { get; set; }
|
|
string BillingEmailAddress();
|
|
string BillingName();
|
|
string BraintreeCustomerIdPrefix();
|
|
string BraintreeIdField();
|
|
string GatewayIdField();
|
|
bool IsUser();
|
|
}
|
|
}
|