1234567891011121314151617181920 |
- using System;
- namespace InABox.Core
- {
- public class ImportDefinition
- {
- public ImportDefinition(Type type, string description, string filter)
- {
- Type = type;
- Description = description;
- Filter = filter;
- }
- public Type Type { get; }
- public string Description { get; }
- public string Filter { get; }
- }
- }
|