21 lines
478 B
C#
21 lines
478 B
C#
using YieldChain.Security;
|
|
|
|
namespace YLErp.Model
|
|
{
|
|
public class GroupAction
|
|
{
|
|
public string id { get; set; }
|
|
|
|
public string EncryptId
|
|
{
|
|
get { return DataProtect.Encrypt(id.ToString()); }
|
|
}
|
|
|
|
public trade trade { get; set; }
|
|
|
|
public trade_cash trade_cash { get; set; } = new trade_cash();
|
|
|
|
public trade_cash_group_action trade_cash_group_action { get; set; } = new trade_cash_group_action();
|
|
}
|
|
}
|