v2rayN/v2rayN/ServiceLib/Models/ComboItem.cs
2024-08-19 18:15:54 +08:00

15 lines
No EOL
210 B
C#

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