15 lines
365 B
C#
15 lines
365 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Nop.Plugin.Misc.AuctionPlugin.Hubs
|
|
{
|
|
public interface IAuctionHubClient
|
|
{
|
|
Task SendAsync(string name, string message);
|
|
Task ReceiveMessageFromClient(string message);
|
|
Task SendPrice(string price);
|
|
}
|
|
} |