using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ServiceShared.Models.Request { public class GetOpened { /// /// Unique id of mobile device /// public string udid { get; set; } /// /// Client verification hash /// public string verificator_hash { get; set; } } }