Files
Wino-Mail/Wino.Services/ApplicationConfiguration.cs
T

15 lines
498 B
C#
Raw Normal View History

using Wino.Core.Domain.Interfaces;
2025-02-16 11:54:23 +01:00
namespace Wino.Services;
public class ApplicationConfiguration : IApplicationConfiguration
2025-02-16 11:35:43 +01:00
{
2025-02-16 11:54:23 +01:00
public const string SharedFolderName = "WinoShared";
2025-02-16 11:43:30 +01:00
2025-02-16 11:54:23 +01:00
public string ApplicationDataFolderPath { get; set; }
public string PublisherSharedFolderPath { get; set; }
public string ApplicationTempFolderPath { get; set; }
2025-02-16 01:44:41 +01:00
public string SentryDNS => "https://81365d32d74c6f223a0674a2fb7bade5@o4509722249134080.ingest.de.sentry.io/4509722259095632";
}