21 lines
421 B
C#
21 lines
421 B
C#
|
|
using AutomaticApp.Common;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace AutomaticApp.Models
|
|||
|
|
{
|
|||
|
|
public class MessageModel : NotifyBase
|
|||
|
|
{
|
|||
|
|
private string comMessage;
|
|||
|
|
|
|||
|
|
public string ComMessage
|
|||
|
|
{
|
|||
|
|
get { return comMessage; }
|
|||
|
|
set { comMessage = value; this.DoNotify(); }
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|