9 lines
162 B
C#
9 lines
162 B
C#
namespace Websockets.ServiceModels.Interfaces
|
|
{
|
|
public interface IResponse
|
|
{
|
|
string Action { get; }
|
|
string Error { get; set; }
|
|
}
|
|
}
|