v2rayN/v2rayN/ServiceLib/Models/ComboItem.cs
2024-10-08 09:50:03 +08:00

15 lines
No EOL
212 B
C#

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