You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

37 lines
891 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Common.Model
{
public class RewardFee
{
public string ShowRewardPoint { get; set; }
public string Point { get; set; }
public string RewardMessage { get; set; }
public string ShowValidationAlert { get; set; }
public string ValidationMsg { get; set; }
public PaymentOptions PaymentOptions { get; set; }
}
public class PaymentOptions
{
public string HeaderText { get; set; }
public List<Option> Options { get; set; }
}
public class Option
{
public string Code { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public string Value { get; set; }
public string Icon { get; set; }
}
}