mirror of
https://github.com/fergalmoran/podnoms.git
synced 2025-12-22 17:28:43 +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; }
|
|
}
|
|
|
|
}
|