ISelectionEntry.cs 296 B

1234567891011
  1. namespace Quadarax.Foundation.Core.QConsole.Command.Base
  2. {
  3. public interface ISelectionEntry
  4. {
  5. string GetIdentifier();
  6. string GetDisplayValue();
  7. object GetPropertyValue(string propertyName);
  8. string GetPropertyValueAsString(string propertyName);
  9. }
  10. }