Owners and addresses works
This commit is contained in:
32
Helpers/ComboboxItem.cs
Normal file
32
Helpers/ComboboxItem.cs
Normal file
@ -0,0 +1,32 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Helpers
|
||||
{
|
||||
public class ComboboxItem
|
||||
{
|
||||
private readonly string _display;
|
||||
private readonly int _hidden;
|
||||
|
||||
public ComboboxItem(string display,int hidden)
|
||||
{
|
||||
_display = display;
|
||||
_hidden = hidden;
|
||||
}
|
||||
public int HiddenValue
|
||||
{
|
||||
get
|
||||
{
|
||||
return _hidden;
|
||||
}
|
||||
}
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
return _display;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user