mirror of https://github.com/abpframework/abp.git
3 changed files with 19 additions and 4 deletions
@ -0,0 +1,15 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
|
|||
namespace Volo.Abp.Sms |
|||
{ |
|||
public class SmsMessage |
|||
{ |
|||
public string PhoneNumber { get; set; } |
|||
|
|||
public string Text { get; set; } |
|||
|
|||
public IDictionary<string, object> Properties { get; set; } |
|||
} |
|||
} |
|||
Loading…
Reference in new issue