v2rayN/v2rayN/ServiceLib/Models/ComboItem.cs

15 lines
164 B
C#
Raw Normal View History

namespace ServiceLib.Models;
public class ComboItem
2020-12-25 12:43:28 +00:00
{
public string? ID
2020-12-25 12:43:28 +00:00
{
get; set;
}
2023-04-14 12:49:36 +00:00
public string? Text
{
get; set;
2020-12-25 12:43:28 +00:00
}
}