mirror of
https://github.com/fergalmoran/podnoms.git
synced 2025-12-22 17:28:43 +00:00
9 lines
305 B
C#
9 lines
305 B
C#
namespace PodNoms.Api.Models.Settings {
|
|
public class AppSettings {
|
|
public string Version { get; set; }
|
|
public string SiteUrl { get; set; }
|
|
public string RssUrl { get; set; }
|
|
public string GoogleApiKey { get; set; }
|
|
public string Downloader { get; set; }
|
|
}
|
|
} |