2025-11-28 00:35:46 +09:00

18 lines
373 B
C#

//
// <copyright file="IProviderCallback.cs" company="Microsoft">
// Copyright (C) Microsoft. All rights reserved.
// </copyright>
//
using System.ServiceModel;
namespace ChatObjectModel
{
[ServiceContract]
public interface IProviderCallback
{
[OperationContract(IsOneWay = true)]
void ResponseReceived(string user, string text);
}
}