Mk0.Software.Bildduplikate/Mk0.Software.Bildduplikate/APIResponse.cs

13 lines
327 B
C#

using System.Collections.Generic;
namespace Mk0.Software.Bildduplikate
{
class APIResponse
{
public string response_code { get; set; }
public string response_desc { get; set; }
public List<APIResponsePayload> payload { get; set; }
public string totalDuplicates { get; set; }
}
}