using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace YD_WeChatApplet.Commons.Dto.Patriarch { /// /// 背景音乐列表 /// public class GeBackgroundMusicDto { /// /// Id /// public int Id { get; set; } /// /// Url /// public string Name { get; set; } /// /// Url /// public string Url { get; set; } } }