mirror of
https://git.oceanpay.cc/danial/kami_itunes_june.git
synced 2025-12-18 22:31:24 +00:00
20 lines
426 B
C#
20 lines
426 B
C#
namespace AppleBatch_June.Model
|
|
{
|
|
public class AddFamilyMemberPostModel
|
|
{
|
|
public string appleId { get; set; }
|
|
|
|
public string password { get; set; }
|
|
|
|
public string appleIdForPurchases { get; set; }
|
|
|
|
public bool shareMyLocationEnabledDefault { get; set; }
|
|
|
|
public bool shareMyPurchasesEnabledDefault { get; set; }
|
|
|
|
public string verificationToken { get; set; }
|
|
|
|
public string preferredAppleId { get; set; }
|
|
}
|
|
}
|