using Microsoft.AspNetCore.Mvc; namespace Elisa.GameServer.Controllers; public class PassportController : Controller { [HttpPost("/passport/userProtocol", Name = "UserProtocol")] public async Task UserProtocol() { return Results.Json(new { user_protocol = "http://127.0.0.1/userProtocol_en_v005.txt", delete_protocol = "http://127.0.0.1/passport/deleteProtocol", delete_notice= @"

1.Please perform this on a safe and frequently-used network and devices.

2.If there are any unused paid services or virtual currency on the linked accounts, they will all be lost along with the account. All game account information on the Sunborn Network will be deleted, so please take care when performing this action.

3.Please read the Deletion Terms below carefully. Your account cannot be restored once it is deleted, so please consider your decision carefully.

", twitter_disable = true }); } }