16 lines
354 B
C#
16 lines
354 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Nop.Plugin.Misc.AuctionPlugin.Hubs.Messages
|
|
{
|
|
public class MessageWrapper
|
|
{
|
|
public string MessageType { get; set; }
|
|
public int SenderId { get; set; }
|
|
public string Data { get; set; }
|
|
}
|
|
}
|