using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace LifePayment.Application.Contracts
|
{
|
public class SyncLifePayChannlesRake
|
{
|
public Guid Id { get; set; }
|
public Guid? UserId { get; set; }
|
public DateTime CreationTime { get; set; }
|
public Guid? CreatorId { get; set; }
|
public DateTime? LastModificationTime { get; set; }
|
public Guid? LastModifierId { get; set; }
|
public bool? IsDeleted { get; set; }
|
public Guid? DeleterId { get; set; }
|
public DateTime? DeletionTime { get; set; }
|
public string ExtraProperties { get; set; }
|
public DateTime? FinishTime { get; set; }
|
public string OrderNo { get; set; }
|
public decimal? PayAmount { get; set; }
|
public decimal? ChannlesRakeRate { get; set; }
|
public decimal? ChannlesRakePrice { get; set; }
|
public string ChannelId { get; set; }
|
}
|
}
|