mirror of
https://github.com/fergalmoran/podnoms.git
synced 2025-12-26 19:28:01 +00:00
11 lines
261 B
C#
11 lines
261 B
C#
namespace PodNoms.Api.Models.Settings {
|
|
|
|
public class EmailSettings {
|
|
public string ApiKey { get; set; }
|
|
public string ApiBaseUri { get; set; }
|
|
public string RequestUri { get; set; }
|
|
public string From { get; set; }
|
|
}
|
|
|
|
}
|