RewardHistoryViewModel.cs 330 B

123456789101112
  1. using System.Collections.Generic;
  2. using LotteryWebApp.Service;
  3. namespace LotteryWebApp.Models
  4. {
  5. public class RewardHistoryModel
  6. {
  7. public List<Transaction> list { get; set; } = new List<Transaction>();
  8. public string totalPage { get; set; } = "0";
  9. public string seqPage { get; set; } = "1";
  10. }
  11. }