Files
serein-flow/Serein.Proto.WebSocket/Handle/WebSocketMethodConfig.cs

15 lines
257 B
C#
Raw Permalink Normal View History

namespace Serein.Proto.WebSocket.Handle
{
public class WebSocketMethodConfig : MethodInvokeConfiguration
{
/// <summary>
/// 主题
/// </summary>
public string ThemeValue { get; set; } = string.Empty;
}
}