You've already forked EventLogLoader
mirror of
https://github.com/romanlryji/EventLogLoader.git
synced 2025-12-07 23:23:44 +02:00
13 lines
357 B
C#
13 lines
357 B
C#
namespace EventLogApp
|
|
{
|
|
public class InfobaseSetting
|
|
{
|
|
public string ESServerName { get; set; }
|
|
public string DatabaseID { get; set; }
|
|
public string DatabaseName { get; set; }
|
|
public string DatabaseCatalog { get; set; }
|
|
public string StartDate { get; set; }
|
|
public bool Found { get; set; }
|
|
}
|
|
}
|