apc-viewer/APC Viewer/Models/AppSettings.cs

12 lines
351 B
C#

namespace APCViewer.Models
{
public class AppSettings
{
public string Company { get; set; }
public string EncryptedPassword { get; set; }
public string MonARessource { get; set; }
public string Server { get; set; }
public string ServiceUser { get; set; }
public string URLs { get; set; }
}
}