Field.ILookupService.cs 223 B

123456789101112
  1. using System.Collections.Generic;
  2. namespace OpenVIII.Fields
  3. {
  4. public static partial class Field
  5. {
  6. public interface ILookupService
  7. {
  8. IEnumerable<Info> EnumerateAll();
  9. }
  10. }
  11. }