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

32 lines
779 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ServiceShared.Models.Request
{
public class ChangeVerificatorHash
{
/// <summary>
/// Unique id of mobile device
/// </summary>
public string udid { get; set; }
/// <summary>
/// Client old verification hash
/// </summary>
public string old_verificator_hash { get; set; }
/// <summary>
/// Client new verification hash
/// </summary>
public string new_verificator_hash { get; set; }
/// <summary>
/// Client pin that can reset password on the same device
/// </summary>
public string pin { get; set; }
}
}