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
);
评论加载中...