mirror of
https://github.com/proxysu/ProxySU.git
synced 2024-11-22 21:26:09 +03:00
22 lines
406 B
C#
22 lines
406 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ProxySU_Core.ViewModels
|
|
{
|
|
public class IdValueViewModel
|
|
{
|
|
public IdValueViewModel(int id, string value)
|
|
{
|
|
Id = id;
|
|
Value = value;
|
|
}
|
|
|
|
public int Id { get; set; }
|
|
|
|
public string Value { get; set; }
|
|
}
|
|
}
|