2024-08-05 00:36:26 +02:00
|
|
|
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
|
|
|
|
2025-07-30 23:36:10 +02:00
|
|
|
public string SentryDNS => "https://81365d32d74c6f223a0674a2fb7bade5@o4509722249134080.ingest.de.sentry.io/4509722259095632";
|
2024-08-05 00:36:26 +02:00
|
|
|
}
|