21 lines
598 B
C#
21 lines
598 B
C#
using Nop.Plugin.Misc.AuctionPlugin.Domains.Enums;
|
|
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 RequestId { get; set; }
|
|
public int RequestCount { get; set; }
|
|
public ResponseType ResponseType { get; set; }
|
|
public bool HideToaster { get; set; }
|
|
public string Data { get; set; }
|
|
}
|
|
}
|