1
0
mirror of https://github.com/bitwarden/server synced 2026-02-22 12:23:37 +00:00

[PM-23761] Auto-reply to tickets in Freskdesk with help from Onyx AI (#6315)

This commit is contained in:
Vijay Oommen
2025-09-15 08:22:39 -05:00
committed by GitHub
parent b4a0555a72
commit b249c4e4d7
5 changed files with 112 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
using System.Text.Json.Serialization;
namespace Bit.Billing.Models;
public class FreshdeskReplyRequestModel
{
[JsonPropertyName("body")]
public required string Body { get; set; }
}