Files
kami_itunes_june/AppleBatch_June.Model/Verification.cs
2024-07-22 00:43:14 +08:00

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; }
}
}