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