mirror of
https://git.oceanpay.cc/danial/kami_itunes_june.git
synced 2025-12-18 21:21:34 +00:00
23 lines
417 B
C#
23 lines
417 B
C#
namespace AppleBatch_June.Model
|
|
{
|
|
internal class Verification
|
|
{
|
|
public class Appleid
|
|
{
|
|
public string name { get; set; }
|
|
|
|
public string formattedAccountName { get; set; }
|
|
}
|
|
|
|
public bool requiresFamilyOrganizerApproval { get; set; }
|
|
|
|
public Appleid appleID { get; set; }
|
|
|
|
public string verificationId { get; set; }
|
|
|
|
public bool canGenerateNew { get; set; }
|
|
|
|
public int length { get; set; }
|
|
}
|
|
}
|