mirror of
https://github.com/fergalmoran/podnoms.git
synced 2026-01-06 16:45:20 +00:00
11 lines
252 B
C#
11 lines
252 B
C#
namespace PodNoms.Api.Models {
|
|
|
|
public class EmailSettings {
|
|
public string ApiKey { get; set; }
|
|
public string ApiBaseUri { get; set; }
|
|
public string RequestUri { get; set; }
|
|
public string From { get; set; }
|
|
}
|
|
|
|
}
|