20 lines
420 B
C#
20 lines
420 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DM_Weight.util
|
|
{
|
|
internal class AlertMsg
|
|
{
|
|
private MsgType _type = MsgType.INFO;
|
|
private string _message = "";
|
|
|
|
public MsgType Type { get => _type; set => _type = value; }
|
|
public string Message { get => _message; set => _message = value; }
|
|
|
|
}
|
|
|
|
}
|