using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// CraftsmanSubAssessment Data Structure.
///
[Serializable]
public class CraftsmanSubAssessment : AopObject
{
///
/// 子评分
///
[JsonProperty("score")]
public long Score { get; set; }
///
/// 子评分项名
///
[JsonProperty("title")]
public string Title { get; set; }
}
}