ImportDefinition.cs 398 B

1234567891011121314151617181920
  1. using System;
  2. namespace InABox.Core
  3. {
  4. public class ImportDefinition
  5. {
  6. public ImportDefinition(Type type, string description, string filter)
  7. {
  8. Type = type;
  9. Description = description;
  10. Filter = filter;
  11. }
  12. public Type Type { get; }
  13. public string Description { get; }
  14. public string Filter { get; }
  15. }
  16. }