ILookupShell.cs 195 B

1234567891011
  1. using System;
  2. using InABox.Core;
  3. namespace InABox.Avalonia
  4. {
  5. public interface ILookupShell : IShell
  6. {
  7. String LookupCode { get; }
  8. String LookupDescription { get; }
  9. }
  10. }