using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Domain.Message.Response.Label
{
public class ShopIdByLabelResp
{
///
/// 店铺Id
///
public string ShopId { get; set; }
///
/// 标签数量
///
public int LabelTotal { get; set; }
}
}