19 lines
352 B
C#
19 lines
352 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Hushian.Application.Models.Message
|
|
{
|
|
public class Message
|
|
{
|
|
public Message(string to, string msg)
|
|
{
|
|
To = to;
|
|
this.msg = msg;
|
|
}
|
|
|
|
public string To { get; set; }
|
|
public string msg { get; set; }
|
|
}
|
|
}
|