Welcome to mirror list, hosted at ThFree Co, Russian Federation.

SelectListItem.cs « System.Web.Mvc « src - github.com/mono/aspnetwebstack.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 650540d9ec3700e2e5cc78adf80a3385dd5ca7a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
namespace System.Web.Mvc
{
    public class SelectListItem
    {
        public bool Selected { get; set; }

        public string Text { get; set; }

        public string Value { get; set; }
    }
}