using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace YouZanSDKStandard.Api.Domain
{
///
/// 留言
///
[Serializable]
public class TradeBuyerMessageOpenModel
{
///
/// 留言的标题
///
public string title { get; set; }
///
/// 留言的内容
///
public string content { get; set; }
}
}