1
0
mirror of https://github.com/proxysu/ProxySU.git synced 2025-02-16 22:53:13 +03:00

30 lines
581 B
C#
Raw Normal View History

2021-05-14 19:07:19 +08:00
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using ProxySuper.Core.Models.Hosts;
using ProxySuper.Core.Models.Projects;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ProxySuper.Core.Models
{
public class Record
{
public Host Host { get; set; }
[JsonProperty("settings")]
public dynamic Settings { get; set; }
public string Type
{
get
{
return Settings.type ?? "Xray";
}
}
}
}