1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-15 01:58:14 -05:00
bitwarden/src/Core/Models/Table/ISubscriber.cs
2019-02-08 23:53:09 -05:00

20 lines
492 B
C#

using System;
using Bit.Core.Enums;
using Bit.Core.Services;
namespace Bit.Core.Models.Table
{
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();
}
}