patbef-ServiceOutside/ServiceShared/Models/Response/PIN.cs

27 lines
549 B
C#
Raw Normal View History

2024-01-29 16:27:34 +01:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ServiceShared.Models.Response
{
public class PIN
{
/**
* PIN of device
*/
public string code { get; set; }
/// <summary>
/// Unique id of mobile device
/// </summary>
public string udid { get; set; }
/// <summary>
/// Client verification hash
/// </summary>
public string verificator_hash { get; set; }
}
}