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