1
0
mirror of synced 2025-02-06 06:34:29 +01:00
2023-02-17 00:38:01 +08:00

13 lines
307 B
C#

namespace Application.Dto.Game;
public class MusicAouDto
{
[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; }
}