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.
|
|
using System;using System.Collections.Generic;using System.Drawing;using System.Linq;using System.Text;using System.Threading.Tasks;
namespace ShenTun.Camera.Common{ public class DialogResponse { public int code { get; set; }
public string message { get; set; }
public Response data { get; set; } }
public class Response{
}
public class PhotoResponse : Response { public string PhotoFormat { get; set; } public string Photo { get; set; } }
public class RequestInterface { public int PhotoInterface { get; set; } public string ImageFormat { get; set; } public int CapturesTotal { get; set; } public int CapturesTimes { get; set; }
public Boolean IsAutoConnect { get; set; } }}
|