mirror of
https://github.com/proxysu/ProxySU.git
synced 2024-11-22 13:16:09 +03:00
25 lines
425 B
C#
25 lines
425 B
C#
using ProxySU_Core.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace ProxySU_Core.Models
|
|
{
|
|
public class Record
|
|
{
|
|
public Record()
|
|
{
|
|
|
|
}
|
|
|
|
public Record(Host host)
|
|
{
|
|
this.Host = host;
|
|
}
|
|
|
|
public Host Host { get; set; } = new Host();
|
|
|
|
public XraySettings Settings { get; set; } = new XraySettings();
|
|
}
|
|
}
|