1
0
mirror of https://github.com/proxysu/ProxySU.git synced 2024-11-23 05:36:08 +03:00
ProxySU/ProxySuper.Core/Models/Record.cs

30 lines
581 B
C#
Raw Normal View History

2021-05-14 14:07:19 +03: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";
}
}
}
}