mirror of
https://github.com/bitwarden/server.git
synced 2025-07-06 10:32:49 -05:00
Turn on file scoped namespaces (#2225)
This commit is contained in:
@ -1,15 +1,14 @@
|
||||
using Bit.Core.Models.Api;
|
||||
|
||||
namespace Bit.Api.Models.Response
|
||||
{
|
||||
public class PaymentResponseModel : ResponseModel
|
||||
{
|
||||
public PaymentResponseModel()
|
||||
: base("payment")
|
||||
{ }
|
||||
namespace Bit.Api.Models.Response;
|
||||
|
||||
public ProfileResponseModel UserProfile { get; set; }
|
||||
public string PaymentIntentClientSecret { get; set; }
|
||||
public bool Success { get; set; }
|
||||
}
|
||||
public class PaymentResponseModel : ResponseModel
|
||||
{
|
||||
public PaymentResponseModel()
|
||||
: base("payment")
|
||||
{ }
|
||||
|
||||
public ProfileResponseModel UserProfile { get; set; }
|
||||
public string PaymentIntentClientSecret { get; set; }
|
||||
public bool Success { get; set; }
|
||||
}
|
||||
|
Reference in New Issue
Block a user