/// <summary>
 /// Create a new LogBrowsers object.
 /// </summary>
 /// <param name="logBrowserId">Initial value of LogBrowserId.</param>
 /// <param name="logBrowserName">Initial value of LogBrowserName.</param>
 /// <param name="logBrowserVersion">Initial value of LogBrowserVersion.</param>
 public static LogBrowsers CreateLogBrowsers(int logBrowserId, string logBrowserName, string logBrowserVersion)
 {
     LogBrowsers logBrowsers = new LogBrowsers();
     logBrowsers.LogBrowserId = logBrowserId;
     logBrowsers.LogBrowserName = logBrowserName;
     logBrowsers.LogBrowserVersion = logBrowserVersion;
     return logBrowsers;
 }
 /// <summary>
 /// There are no comments for LogBrowsers in the schema.
 /// </summary>
 public void AddToLogBrowsers(LogBrowsers logBrowsers)
 {
     base.AddObject("LogBrowsers", logBrowsers);
 }