using Prospect.Server.Api.Services.CloudScript.Models; namespace Prospect.Server.Api.Services.CloudScript.Functions; [CloudScriptFunction("UpdatePlayerPresenceState")] public class UpdatePlayerPresenceState : ICloudScriptFunction { public Task ExecuteAsync(FYUpdatePlayerPresenceStateRequest request) { return Task.FromResult(new { }); } }