/*********************************************************************** * Project: CoreCms * ProjectName: 核心内容管理系统 * Web: https://www.corecms.net * Author: 大灰灰 * Email: jianweie@163.com * CreateTime: 2021/1/31 21:45:10 * Description: 暂无 ***********************************************************************/ namespace CoreCms.Net.Model.FromBody { //API接口提交================================================ /// /// 申请成为分销商接口提交参数 /// public class FMDistributionApply { public string agreement { get; set; } public string mobile { get; set; } public string name { get; set; } public string qq { get; set; } public string weixin { get; set; } } /// /// 店铺设置提交参数 /// public class FMSetDistributionStorePost { public string storeBanner { get; set; } public string storeDesc { get; set; } public string storeLogo { get; set; } public string storeName { get; set; } } }