using System.Collections.Generic; using LotteryWebApp.Service; namespace LotteryWebApp.Models { public class RewardHistoryModel { public List list { get; set; } = new List(); public string totalPage { get; set; } = "0"; public string seqPage { get; set; } = "1"; } }