2025-06-06 14:57:20 +08:00

51 lines
1.1 KiB
C#

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
{
/// <summary>
/// 场馆详情
/// </summary>
public class StadiumDetailsDto : StadiumListDto
{
/// <summary>
/// 联系电话
/// </summary>
public string PhoneNo { get; set; }
/// <summary>
///介绍
/// </summary>
public string Intro { get; set; }
/// <summary>
/// 图片视频列表
/// </summary>
public List<StadiumResourceDto> StadiumResourceList { get; set; }
}
/// <summary>
/// 场馆资源
/// </summary>
public class StadiumResourceDto
{
public int Id { get; set; }
/// <summary>
///资源类型[1:图片/2:视频]
/// </summary>
public int Type { get; set; }
/// <summary>
/// 资源地址
/// </summary>
public string Url { get; set; }
}
}