mirror of
https://github.com/2dust/v2rayN.git
synced 2026-01-27 04:59:42 +05:00
15 lines
164 B
C#
15 lines
164 B
C#
namespace ServiceLib.Models;
|
|
|
|
public class ComboItem
|
|
{
|
|
public string? ID
|
|
{
|
|
get; set;
|
|
}
|
|
|
|
public string? Text
|
|
{
|
|
get; set;
|
|
}
|
|
}
|