1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- 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 int IsAuditGM { 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; }
-
-
-
- public DateTime? DatePrice { get; set; }
-
-
-
- public int Count { get; set; }
-
-
-
- public int Units { get; set; }
- }
- }
|