mirror of
https://github.com/bitwarden/server.git
synced 2025-05-06 12:12:18 -05:00

* Added offboarding survey response to cancellation when FF is on. * Removed service methods to prevent unnecessary upstream registrations * Forgot to actually remove the injected command in the services * Rui's feedback * Add missing summary * Missed [FromBody]
9 lines
199 B
C#
9 lines
199 B
C#
namespace Bit.Core.Billing.Models;
|
|
|
|
public class OffboardingSurveyResponse
|
|
{
|
|
public Guid UserId { get; set; }
|
|
public string Reason { get; set; }
|
|
public string Feedback { get; set; }
|
|
}
|