mirror of
https://github.com/bitwarden/server
synced 2026-01-05 01:53:17 +00:00
12 lines
292 B
C#
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; }
|
|
}
|