123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.ViewModels.Groups
- {
- public class CarTouristCreditCardPaymentView
- {
-
-
-
- public int PayDId { get; set; }
-
-
-
- public string PayName { get; set; }
-
-
-
- public decimal PayMoney { get; set; }
-
-
-
- public int PaymentCurrency { get; set; }
-
-
-
- public string PaymentCurrencyName { get; set; }
-
-
-
- public decimal PayPercentage { get; set; }
-
-
-
- public string Payee { get; set; }
-
-
-
- public int OrbitalPrivateTransfer { get; set; }
-
-
-
- public string OrbitalPrivateTransferStr { get; set; }
- }
- public class CarTouristGuideGroundReservationsContentView
- {
- public int Id { get; set; }
-
-
-
- public int SId { get; set; }
-
-
-
- public string SidName { get; set; }
-
-
-
- public decimal Price { get; set; }
-
-
-
- public string PriceContent { get; set; }
- }
- }
|