齐越消息中心
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

25 lines
748 B

namespace QYMessageCenter.Client.Models.Msg
{
/// <summary>
/// 消息_评价助手_上架失败
/// </summary>
public class Message_PJZS_SHANGJIASHIBAI : Message
{
private string activityName;
private string spuLogo;
private string mainProductSpu;
private string errorMsg;
public string ActivityName { get => activityName; set { SetProperty(ref activityName, value); } }
public string SpuLogo { get => spuLogo; set { SetProperty(ref spuLogo, value); } }
public string MainProductSpu { get => mainProductSpu; set { SetProperty(ref mainProductSpu, value); } }
public string ErrorMsg { get => errorMsg; set { SetProperty(ref errorMsg, value); } }
}
}