2010-06-21 Marek Habersack <mhabersack@novell.com>
[mcs.git] / class / System.Web.Mvc / System.Web.Mvc / SelectListItem.cs
blob962bf361dc1dba85ec680f5d9fa23acb6d7b15aa
1 /* ****************************************************************************
3 * Copyright (c) Microsoft Corporation. All rights reserved.
5 * This software is subject to the Microsoft Public License (Ms-PL).
6 * A copy of the license can be found in the license.htm file included
7 * in this distribution.
9 * You must not remove this notice, or any other, from this software.
11 * ***************************************************************************/
13 namespace System.Web.Mvc {
15 public class SelectListItem {
17 public bool Selected {
18 get;
19 set;
22 public string Text {
23 get;
24 set;
27 public string Value {
28 get;
29 set;