mirror of
https://github.com/bitwarden/server
synced 2025-12-10 13:23:27 +00: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]
8 lines
172 B
C#
8 lines
172 B
C#
namespace Bit.Api.Models.Request;
|
|
|
|
public class SubscriptionCancellationRequestModel
|
|
{
|
|
public string Reason { get; set; }
|
|
public string Feedback { get; set; }
|
|
}
|