ScientificReport
SelectItem.cs
Go to the documentation of this file.
1 namespace ScientificReport.DTO.Models.Department
2 {
3  public class SelectItem
4  {
5  public string Value { get; set; }
6  public string Text { get; set; }
7  public bool Selected { get; set; }
8 
9  public SelectItem(string text, string value, bool selected)
10  {
11  Value = value;
12  Text = text;
13  Selected = selected;
14  }
15 
16  public SelectItem(string text, string value)
17  {
18  Value = value;
19  Text = text;
20  Selected = false;
21  }
22  }
23 }
SelectItem(string text, string value, bool selected)
Definition: SelectItem.cs:9