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

15 lines
335 B
C#
Raw Normal View History

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