You can not 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
521 B
24 lines
521 B
namespace Znyc.Cloudcar.Admin.Security.Dtos.Document
|
|
{
|
|
public class ImageOutput
|
|
{
|
|
public Credentials Credentials { get; set; }
|
|
|
|
public string Expiration { get; set; }
|
|
|
|
public int ExpiredTime { get; set; }
|
|
|
|
public string RequestId { get; set; }
|
|
|
|
public int StartTime { get; set; }
|
|
}
|
|
|
|
public class Credentials
|
|
{
|
|
public string TmpSecretId { get; set; }
|
|
|
|
public string TmpSecretKey { get; set; }
|
|
|
|
public string Token { get; set; }
|
|
}
|
|
}
|