36 lines
1 KiB
C#
36 lines
1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DAVIVIENDA.SUGESE.Model
|
|
{
|
|
public class AppConfiguration
|
|
{
|
|
public string UrlBaseApi { get; set; }
|
|
public string StringConnection { get; set; }
|
|
public string GBPassword { get; set; }
|
|
public string LOGeneraKey { get; set; }
|
|
public string ServerConnection { get; set; }
|
|
public string UserConnection { get; set; }
|
|
public string PswConnection { get; set; }
|
|
public string PortConnection { get; set; }
|
|
public string DBName { get; set; }
|
|
public bool IsCredentialsEncrypted { get; set; }
|
|
public bool WindowsAuthentication { get; set; }
|
|
|
|
public SSRSParams SSRS { get; set; }
|
|
|
|
}
|
|
|
|
public class SSRSParams
|
|
{
|
|
public string Url { get; set; }
|
|
public string User { get; set; }
|
|
public string Password { get; set; }
|
|
public string Domain { get; set; }
|
|
public string FolderPath { get; set; }
|
|
|
|
}
|
|
}
|