Advertisement
Guest User

Untitled

a guest
Feb 1st, 2015
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.71 KB | None | 0 0
  1. using System;
  2.  
  3. namespace YoloTrack.MVC.Model.Configuration
  4. {
  5.     namespace Option
  6.     {
  7.         /// <summary>
  8.         /// Database subtree
  9.         /// </summary>
  10.         struct Database
  11.         {
  12.             public string FileName;
  13.             public uint RecordLimit;
  14.         } // End struct
  15.  
  16.         /// <summary>
  17.         /// IndentificationData subtree
  18.         /// </summary>
  19.         struct IdentificationData
  20.         {
  21.             public string ConfigurationFileName;
  22.         }
  23.     } // End namespace
  24.  
  25.     /// <summary>
  26.     /// Configuration root
  27.     /// </summary>
  28.     struct Options
  29.     {
  30.         public Option.Database Database { get; private set; }
  31.     } // End struct
  32. } // End namespace
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement