2024-07-21 05:45:02 +02:00
|
|
|
|
using Wino.Domain.Interfaces;
|
2024-07-18 20:03:58 +02:00
|
|
|
|
|
2024-07-21 05:45:02 +02:00
|
|
|
|
namespace Wino.Services.Services
|
2024-07-18 20:03:58 +02:00
|
|
|
|
{
|
|
|
|
|
|
public class ApplicationConfiguration : IApplicationConfiguration
|
|
|
|
|
|
{
|
|
|
|
|
|
public const string SharedFolderName = "WinoShared";
|
|
|
|
|
|
|
|
|
|
|
|
public string ApplicationDataFolderPath { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public string PublisherSharedFolderPath { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|