Files
NostrServices/NostrServices/Config.cs
2024-02-02 16:06:16 +00:00

9 lines
155 B
C#

namespace NostrServices;
public class Config
{
public string Redis { get; init; } = null!;
public string GeoIpDatabase { get; init; } = null!;
}