10 lines
364 B
C#
10 lines
364 B
C#
namespace xMessageService.Models {
|
|
public partial class XSmsConfiguration {
|
|
public string ServiceUrl { get; set; }
|
|
public string Username { get; set; }
|
|
public string Password { get; set; }
|
|
public string LineNumber { get; set; }
|
|
public string UserApiKey { get; set; }
|
|
public string SecretKey { get; set; }
|
|
}
|
|
} |