v2rayN/v2rayN/ServiceLib/Models/ComboItem.cs

14 lines
164 B
C#

namespace ServiceLib.Models;
public class ComboItem
{
public string? ID
{
get; set;
}
public string? Text
{
get; set;
}
}