16 lines
406 B
C#
16 lines
406 B
C#
using Nop.Plugin.Misc.AuctionPlugin.Domains.Dtos;
|
|
|
|
namespace Nop.Plugin.Misc.AuctionPlugin.Hubs.Messages;
|
|
|
|
public abstract class AuctionNotificationBase
|
|
{
|
|
public AuctionDto AuctionDto { get; set; }
|
|
public string ToasterMessage { get; set; }
|
|
|
|
protected AuctionNotificationBase(){}
|
|
|
|
protected AuctionNotificationBase(AuctionDto auctionDto)
|
|
{
|
|
AuctionDto = auctionDto;
|
|
}
|
|
} |