mirror of
https://git.oceanpay.cc/danial/kami_itunes_june.git
synced 2025-12-18 21:21:34 +00:00
49 lines
931 B
C#
49 lines
931 B
C#
namespace AppleBatch_June.Model
|
|
{
|
|
public class FamilyMembers
|
|
{
|
|
public class Family
|
|
{
|
|
public string familyId { get; set; }
|
|
|
|
public string organizerDsid { get; set; }
|
|
}
|
|
|
|
public class Activefamilyservice
|
|
{
|
|
public string id { get; set; }
|
|
|
|
public string icon { get; set; }
|
|
|
|
public string displayLabel { get; set; }
|
|
|
|
public bool isSubscription { get; set; }
|
|
}
|
|
|
|
public class Familymember
|
|
{
|
|
public string dsid { get; set; }
|
|
|
|
public string firstName { get; set; }
|
|
|
|
public string lastName { get; set; }
|
|
|
|
public string fullName { get; set; }
|
|
}
|
|
|
|
public string currentDsid { get; set; }
|
|
|
|
public string currentUserAppleId { get; set; }
|
|
|
|
public Activefamilyservice[] activeFamilyServices { get; set; }
|
|
|
|
public Family family { get; set; }
|
|
|
|
public Familymember[] familyMembers { get; set; }
|
|
|
|
public bool isLinkedToFamily { get; set; }
|
|
|
|
public bool isMemberOfFamily { get; set; }
|
|
}
|
|
}
|