1
0
mirror of synced 2024-12-18 17:25:54 +01:00
GC-local-server-rewrite/Application/Dto/Game/MusicAouDto.cs

13 lines
307 B
C#
Raw 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 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; }
}