blob: 6a166973a99d321f8b1ed0c1abb6c7b9bde7f54b [file] [log] [blame]
namespace oneM2MClient.Utils.ResultHandling
{
public interface IMessage
{
MessageType MessageType { get; set; }
string Code { get; set; }
string Text { get; set; }
string ToString();
}
}