sozsoft-platform/api/src/Sozsoft.Platform.Domain.Shared/SelectListItem.cs

28 lines
570 B
C#
Raw Normal View History

2026-02-24 20:44:16 +00:00
namespace Sozsoft.Platform;
public class SelectListItem
{
public string? Text { get; set; }
public string? Value { get; set; }
public bool? Selected { get; set; }
//public bool Disabled { get; set; }
//public SelectListGroup Group { get; set; }
public SelectListItem() { }
public SelectListItem(string text, string value)
{
Text = text;
Value = value;
}
public SelectListItem(string text, string value, bool selected)
{
Text = text;
Value = value;
Selected = selected;
}
}