aspnetcore/samples/SocketsSample/InvocationResultDescriptor.cs

17 lines
311 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace SocketsSample
{
public class InvocationResultDescriptor
{
public string Id { get; set; }
public object Result { get; set; }
public string Error { get; set; }
}
}