mirror of
https://github.com/fergalmoran/podnoms.git
synced 2025-12-22 09:18:08 +00:00
12 lines
295 B
C#
12 lines
295 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; }
|
|
|
|
}
|
|
} |