ILocalizableComboboxItem.cs 294 B

12345678910111213
  1. using Abp.Localization;
  2. using Newtonsoft.Json;
  3. namespace Abp.UI.Inputs
  4. {
  5. public interface ILocalizableComboboxItem
  6. {
  7. string Value { get; set; }
  8. [JsonConverter(typeof(LocalizableStringToStringJsonConverter))]
  9. ILocalizableString DisplayText { get; set; }
  10. }
  11. }