OptionItem.cs 584 Bytes
namespace Rcs.Domain.ValueObjects
{
    /// <summary>
    /// 通用下拉选项值对象
    /// </summary>
    public class OptionItem
    {
        public OptionItem()
        {
        }

        public OptionItem(string label, string value)
        {
            Label = label;
            Value = value;
        }

        /// <summary>
        /// 显示文本
        /// </summary>
        public string Label { get; set; } = string.Empty;

        /// <summary>
        /// 选项值
        /// </summary>
        public string Value { get; set; } = string.Empty;
    }
}