mirror of
https://github.com/2dust/v2rayN.git
synced 2025-11-29 19:23:11 +00:00
14 lines
164 B
C#
14 lines
164 B
C#
namespace ServiceLib.Models;
|
|
|
|
public class ComboItem
|
|
{
|
|
public string? ID
|
|
{
|
|
get; set;
|
|
}
|
|
|
|
public string? Text
|
|
{
|
|
get; set;
|
|
}
|
|
}
|