34 lines
1.4 KiB
C#
34 lines
1.4 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CCH
|
|
{
|
|
public static class AppFileSystem
|
|
{
|
|
//Private
|
|
private readonly static string appFileIconSystem = Path.Combine(AppFolderSystem.appDataFolderConfig, "icone.ico");
|
|
private readonly static string appFileDBSystem = Path.Combine(AppFolderSystem.appDataFolderConfig, "Database.cfg");
|
|
private readonly static string appFileFTPSystem = Path.Combine(AppFolderSystem.appDataFolderConfig, "Ftp-client.cfg");
|
|
private readonly static string appFileTelegramSystem = Path.Combine(AppFolderSystem.appDataFolderConfig, "Telegram-Client.cfg");
|
|
private readonly static string appFileSMTPSystem = Path.Combine(AppFolderSystem.appDataFolderConfig, "Smtp-Client.cfg");
|
|
private readonly static string appFileConfigEmpresa = Path.Combine(AppFolderSystem.appDataFolderConfig, "Empresa-Client.cfg");
|
|
|
|
|
|
|
|
//Public
|
|
public static string AppFileIconSystem => appFileIconSystem;
|
|
public static string AppFileDBSystem => appFileDBSystem;
|
|
|
|
public static string AppFileFTPSystem => appFileFTPSystem;
|
|
|
|
public static string AppFileTelegramSystem => appFileTelegramSystem;
|
|
|
|
public static string AppFileSMTPSystem => appFileSMTPSystem;
|
|
|
|
public static string AppFileConfigEmpresa => appFileConfigEmpresa;
|
|
}
|
|
}
|