mirror of
https://github.com/bitwarden/server.git
synced 2026-02-12 20:03:25 +08:00
12 lines
375 B
C#
12 lines
375 B
C#
|
|
namespace Bit.Core.Models.Mail.Provider;
|
|||
|
|
|
|||
|
|
public class ProviderUpdatePaymentMethodViewModel : BaseMailModel
|
|||
|
|
{
|
|||
|
|
public string OrganizationId { get; set; }
|
|||
|
|
public string OrganizationName { get; set; }
|
|||
|
|
public string ProviderName { get; set; }
|
|||
|
|
|
|||
|
|
public string PaymentMethodUrl =>
|
|||
|
|
$"{WebVaultUrl}/organizations/{OrganizationId}/billing/payment-method";
|
|||
|
|
}
|