1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Wayne.Lib.IO
- {
- /// <summary>
- /// FlatFileXml support.
- /// </summary>
- public static class FlatFileXml
- {
- /// <summary>
- /// The XML namespace of the FlatFile.
- /// </summary>
- public const string Ns = "http://www.wayne.com/2007-06-29/FlatFile.xsd";
- }
- }
|