14 lines
295 B
C#
14 lines
295 B
C#
![]() |
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace Hushian.Application.Models.Message
|
|||
|
{
|
|||
|
public class MessageSetting
|
|||
|
{
|
|||
|
public string UserName { get; set; }
|
|||
|
public string Password { get; set; }
|
|||
|
public string From { get; set; }
|
|||
|
}
|
|||
|
}
|