13 lines
296 B
C#
13 lines
296 B
C#
using System.Text.Json.Serialization;
|
|
using SystemX.Core.Config.Model;
|
|
using WebApi.Library.Config;
|
|
|
|
namespace WebApi.Project.UniqueKeyApi.Models
|
|
{
|
|
public class UniqueKeyApiConfig : WebApiConfig
|
|
{
|
|
[JsonPropertyName("Socket")]
|
|
public Server Socket { get; set; }
|
|
}
|
|
}
|