17 lines
405 B
C#
17 lines
405 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace PornocopiaVisionMetadataExtractor.Data
|
|
{
|
|
public class ComputerVisionResponse
|
|
{
|
|
[JsonPropertyName("request_id")]
|
|
public String RequestID { get; set; }
|
|
[JsonPropertyName("metadata")]
|
|
public ComputervisionFaceResult[] Results { get; set; }
|
|
|
|
}
|
|
}
|