Commit for development environment setup
This commit is contained in:
30
PROMS/VEPROMS.CSLA.Library/Extension/Security/vlnValueKey.cs
Normal file
30
PROMS/VEPROMS.CSLA.Library/Extension/Security/vlnValueKey.cs
Normal file
@@ -0,0 +1,30 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace VEPROMS.CSLA.Library
|
||||
{
|
||||
public class vlnValueKey
|
||||
{
|
||||
public vlnValueKey() { ;}
|
||||
public vlnValueKey(int key, string value)
|
||||
{
|
||||
_key = key;
|
||||
_value = value;
|
||||
}
|
||||
private int _key;
|
||||
public int Key
|
||||
{
|
||||
get { return _key; }
|
||||
}
|
||||
private string _value;
|
||||
public string Value
|
||||
{
|
||||
get { return _value; }
|
||||
}
|
||||
public override string ToString()
|
||||
{
|
||||
return _value;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user