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: 311f2160b63b8eee8457c9ad4db39ac9452f7909 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.

namespace System.Web.Mvc
{
    public class SelectListItem
    {
        public bool Selected { get; set; }

        public string Text { get; set; }

        public string Value { get; set; }
    }
}