1
0
mirror of https://github.com/bitwarden/server synced 2026-01-05 01:53:17 +00:00
Files
server/src/Core/Billing/Models/OffboardingSurveyResponse.cs
2025-07-08 11:46:24 -04:00

12 lines
292 B
C#

// FIXME: Update this file to be null safe and then delete the line below
#nullable disable
namespace Bit.Core.Billing.Models;
public class OffboardingSurveyResponse
{
public Guid UserId { get; set; }
public string Reason { get; set; }
public string Feedback { get; set; }
}