mirror of
https://github.com/fergalmoran/podnoms.git
synced 2025-12-22 09:18:08 +00:00
15 lines
303 B
C#
15 lines
303 B
C#
namespace PodNoms.Api.Models
|
|
{
|
|
public class AppSettings
|
|
{
|
|
public string Version { get; set; }
|
|
public string RssUrl { get; set; }
|
|
}
|
|
|
|
public class StorageSettings
|
|
{
|
|
public string ConnectionString { get; set; }
|
|
public string CdnUrl { get; set; }
|
|
|
|
}
|
|
} |