10 lines
343 B
C#
10 lines
343 B
C#
namespace xMessageService.Models {
|
|
public partial class XMailConfiguration {
|
|
public string Title { get; set; }
|
|
public string Host { get; set; }
|
|
public int Port { get; set; }
|
|
public bool EnableSsl { get; set; }
|
|
public string Username { get; set; }
|
|
public string Password { get; set; }
|
|
}
|
|
} |