CSVImporter.cs 196 B

1234567
  1. namespace InABox.Core
  2. {
  3. public class CSVImporter<T> : DelimitedImporter<T> where T : Entity, IRemotable, IPersistent, new()
  4. {
  5. protected override string Delimiter => ",";
  6. }
  7. }