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

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