You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
586 B
C#

namespace Infrastructure.CloudSdk;
public class FileUploadCallbackEventReply<T>
{
public string tid { get; set; }
public string bid { get; set; }
public long? timestamp { get; set; }
public string gateway { get; set; }
public string method { get; set; }
public T data { get; set; }
public override string ToString()
{
return $"CommonTopicRequest{{tid='{tid}', bid='{bid}', timestamp={timestamp}, data={data}}}";
}
public FileUploadCallbackEventReply<T> SetTid(string tid)
{
this.tid = tid;
return this;
}
}