16 lines
368 B
C#
16 lines
368 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 BidNotificationMessage
|
|
{
|
|
public string ProductName { get; set; }
|
|
public int BidPrice { get; set; }
|
|
public int NextStepAmount { get; set; }
|
|
}
|
|
}
|