| 123456789101112131415161718 |
- using LotteryWebApp.Service;
- namespace LotteryWebApp.Models
- {
- public class PartialInform_ViewModel
- {
- public string message { get; set; }
- }
- public class PartialTransaction_ViewModel
- {
- public string content { get; set; }
- public string confirmFunc { get; set; }
- public string resentFunc { get; set; }
- public string cancelFunc { get; set; }
- }
- }
|