1
0
mirror of synced 2025-01-19 06:27:25 +01:00

13 lines
309 B
C#
Raw Normal View History

2023-02-17 00:38:01 +08:00
namespace Application.Dto.Game;
2023-02-14 00:38:19 +08:00
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; }
}