mirror of
https://git.oceanpay.cc/danial/kami_itunes_june.git
synced 2025-12-18 22:31:24 +00:00
18 lines
316 B
C#
18 lines
316 B
C#
using System.Collections.Generic;
|
|
|
|
namespace AppleBatch_June.Model
|
|
{
|
|
public class IntervalIdModel
|
|
{
|
|
public string appleId { get; set; }
|
|
|
|
public string applePwd { get; set; }
|
|
|
|
public int state { get; set; }
|
|
|
|
public string msg { get; set; }
|
|
|
|
public List<IntervalCartModel> intervalCarts { get; set; }
|
|
}
|
|
}
|