123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- using System;
- using System.Collections.Generic;
- using System.Collections.Specialized;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.ViewModels.JuHeExchangeRate
- {
-
-
-
- public class JuHeAPIResult
- {
-
-
-
-
- public int Error_code { get; set; }
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- public string? Resultcode { get; set; }
-
-
-
- public string? Reason { get; set; }
-
-
-
- public object? Result { get; set; }
- }
-
-
-
- public class ExchangeRateModel
- {
-
-
-
- public string? Name { get; set; }
-
-
-
- public string? FBuyPri { get; set; }
-
-
-
- public string? MBuyPri { get; set; }
-
-
-
- public string? MSellPri { get; set; }
-
-
-
- public string? BankConversionPri { get; set; }
-
-
-
- public string? Date { get; set; }
-
-
-
- public string? Time { get; set; }
- }
- public record AclRecord
- {
- public Dictionary<string, StringCollection> ACL { get; set; }
- }
- }
|