9 lines
213 B
C#
9 lines
213 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Prospect.Server.Api.Services.CloudScript.Models;
|
|
|
|
public class FYGetSignalRConnection
|
|
{
|
|
[JsonPropertyName("userId")]
|
|
public string UserId { get; set; }
|
|
} |