mirror of
https://github.com/azaion/satellite-provider.git
synced 2026-04-22 22:36:39 +00:00
9 lines
195 B
C#
9 lines
195 B
C#
namespace SatelliteProvider.Common.Configs;
|
|
|
|
public class StorageConfig
|
|
{
|
|
public string TilesDirectory { get; set; } = "/tiles";
|
|
public string ReadyDirectory { get; set; } = "/ready";
|
|
}
|
|
|