19 lines
327 B
C#
19 lines
327 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Getf.Service.Transfer.Client.WinService.Entities
|
|
{
|
|
public class TransResult
|
|
{
|
|
public string Key { get; set; }
|
|
|
|
public int Code { get; set; }
|
|
|
|
public string Message { get; set; }
|
|
|
|
public byte[] Data { get; set; }
|
|
}
|
|
}
|