using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace YD_WeChatApplet.Commons.Dto.ClientSide
{
///
/// 场馆详情
///
public class StadiumDetailsDto : StadiumListDto
{
///
/// 联系电话
///
public string PhoneNo { get; set; }
///
///介绍
///
public string Intro { get; set; }
///
/// 图片视频列表
///
public List StadiumResourceList { get; set; }
}
///
/// 场馆资源
///
public class StadiumResourceDto
{
public int Id { get; set; }
///
///资源类型[1:图片/2:视频]
///
public int Type { get; set; }
///
/// 资源地址
///
public string Url { get; set; }
}
}