PartialViewModel.cs 411 B

123456789101112131415161718
  1. using LotteryWebApp.Service;
  2. namespace LotteryWebApp.Models
  3. {
  4. public class PartialInform_ViewModel
  5. {
  6. public string message { get; set; }
  7. }
  8. public class PartialTransaction_ViewModel
  9. {
  10. public string content { get; set; }
  11. public string confirmFunc { get; set; }
  12. public string resentFunc { get; set; }
  13. public string cancelFunc { get; set; }
  14. }
  15. }