mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 21:18:13 -05:00

* Billing: Add event recovery endpoints * Core: Add InternalBilling to BaseServiceUriSettings * Admin: Scaffold billing section * Admin: Scaffold ProcessStripeEvents section * Admin: Implement event processing * Run dotnet format
10 lines
199 B
C#
10 lines
199 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Bit.Billing.Models.Recovery;
|
|
|
|
public class EventsRequestBody
|
|
{
|
|
[JsonPropertyName("eventIds")]
|
|
public List<string> EventIds { get; set; }
|
|
}
|