ISelectionEntry.cs 408 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Quadarax.Foundation.QConsole.Command.Base
  7. {
  8. public interface ISelectionEntry
  9. {
  10. string GetIdentifier();
  11. string GetDisplayValue();
  12. object GetPropertyValue(string propertyName);
  13. string GetPropertyValueAsString(string propertyName);
  14. }
  15. }