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

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