1
0
mirror of synced 2024-12-03 18:27:19 +01:00
GC-local-server-rewrite/Application/Dto/Game/MusicExtraDto.cs

13 lines
309 B
C#
Raw Permalink Normal View History

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