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

25 lines
425 B
C#
Raw Normal View History

2021-03-04 11:25:36 +03:00
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();
}
}