Class NameValueSelected
- Namespace
- Contensive.BaseClasses.LayoutBuilder
- Assembly
- CPBase.dll
A simple class to hold a name value pair with a selected flag. Used to create a list of options for a select input in the filter group.
public class NameValueSelected
- Inheritance
-
NameValueSelected
- Inherited Members
Constructors
NameValueSelected(string, string, bool)
A simple class to hold a name value pair with a selected flag. Used to create a list of options for a select input in the filter group.
public NameValueSelected(string name, string value, bool selected)
Parameters
Properties
name
public string name { get; set; }
Property Value
selected
public bool selected { get; set; }
Property Value
value
public string value { get; set; }