patbef-ServiceOutside/ServiceShared/Models/Request/DeleteDevice.cs

22 lines
466 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.Request
{
public class DeleteDevice
{
/// <summary>
/// Unique id of mobile device
/// </summary>
public string udid { get; set; }
/// <summary>
/// Client verification hash
/// </summary>
public string verificator_hash { get; set; }
}
}