mirror of
https://github.com/bitwarden/server.git
synced 2025-05-30 07:44:50 -05:00
16 lines
370 B
C#
16 lines
370 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Bit.Billing.Models;
|
|
|
|
public class FreshdeskWebhookModel
|
|
{
|
|
[JsonPropertyName("ticket_id")]
|
|
public string TicketId { get; set; }
|
|
|
|
[JsonPropertyName("ticket_contact_email")]
|
|
public string TicketContactEmail { get; set; }
|
|
|
|
[JsonPropertyName("ticket_tags")]
|
|
public string TicketTags { get; set; }
|
|
}
|