using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace Essensoft.AspNetCore.Payment.Alipay.Domain
{
///
/// AntMerchantExpandFrontcategorySecurityModifyModel Data Structure.
///
[Serializable]
public class AntMerchantExpandFrontcategorySecurityModifyModel : AlipayObject
{
///
/// 前台类目描述
///
[JsonProperty("description")]
public string Description { get; set; }
///
/// 前台类目ID
///
[JsonProperty("front_category_id")]
public string FrontCategoryId { get; set; }
///
/// 素材列表(会和前台类目已存在素材做差异化比较后做增删改操作)
///
[JsonProperty("material_list")]
public List MaterialList { get; set; }
///
/// 前台类目名称
///
[JsonProperty("name")]
public string Name { get; set; }
}
}