mirror of
https://github.com/proxysu/ProxySU.git
synced 2024-11-26 15:16:08 +03:00
13 lines
185 B
C#
13 lines
185 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace ProxySU_Core.ViewModels
|
|
{
|
|
public class Record
|
|
{
|
|
public Host Host { get; set; }
|
|
|
|
}
|
|
}
|