using System.Runtime.Serialization;
using System.Xml.Serialization;
namespace Dpz.Core.Public.ViewModel.Response;
/// <summary>
/// Represents the CommentRelationResponse record.
/// </summary>
[DataContract, Serializable, XmlRoot("CommentRelationResponse")]
public record CommentRelationResponse(
[property: DataMember, XmlElement] string Id,
[property: DataMember, XmlElement] string Title
);
AI 正在分析代码…
评论加载中...