1
0
mirror of synced 2024-12-04 02:37:18 +01:00
GC-local-server-rewrite/Application/Dto/MusicExtraDto.cs
2023-02-14 00:38:19 +08:00

15 lines
337 B
C#

using System.Xml.Serialization;
namespace Application.Dto;
public class MusicExtraDto
{
[XmlAttribute(AttributeName = "id")]
public int Id { get; set; }
[XmlElement(ElementName = "music_id")]
public int MusicId { get; set; }
[XmlElement(ElementName = "use_flag")]
public int UseFlag { get; set; }
}