16 lines
343 B
C#
16 lines
343 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Backend.Models
|
|||
|
{
|
|||
|
public class SMSConfig
|
|||
|
{
|
|||
|
public string UserName { get; set; }
|
|||
|
public string Password { get; set; }
|
|||
|
public string Encoded { get; set; }
|
|||
|
public string Api { get; set; }
|
|||
|
}
|
|||
|
}
|