41 lines
757 B
C#
41 lines
757 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using YLErp.Abstract;
|
|
|
|
namespace YLErp.Models
|
|
{
|
|
public class ZQApiResponseModel
|
|
{
|
|
public string msg { get; set; }
|
|
|
|
public int code { get; set; }
|
|
|
|
|
|
|
|
public bool success { get; set; }
|
|
}
|
|
|
|
public class ZQTokenApiResponseModel : ZQApiResponseModel
|
|
{
|
|
public ZQApiToken data { get; set; }
|
|
}
|
|
|
|
public class ZQSealApiResponseModel : ZQApiResponseModel
|
|
{
|
|
public ZQSealFile data { get; set; }
|
|
}
|
|
|
|
public class ZQApiToken
|
|
{
|
|
public string token { get; set; }
|
|
}
|
|
|
|
public class ZQSealFile
|
|
{
|
|
public string fileByte { get; set; }
|
|
}
|
|
}
|