FlatFileXml.cs 385 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Wayne.Lib.IO
  5. {
  6. /// <summary>
  7. /// FlatFileXml support.
  8. /// </summary>
  9. public static class FlatFileXml
  10. {
  11. /// <summary>
  12. /// The XML namespace of the FlatFile.
  13. /// </summary>
  14. public const string Ns = "http://www.wayne.com/2007-06-29/FlatFile.xsd";
  15. }
  16. }