1
0
mirror of synced 2025-01-18 22:24:06 +01:00
2023-02-17 00:38:01 +08:00

13 lines
309 B
C#

namespace Application.Dto.Game;
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; }
}