using System.Collections.Generic;
using Abp.AutoMapper;
using Abp.Application.Services.Dto;
using System.ComponentModel.DataAnnotations;
using WePlatform.WeBase;
namespace WePlatform.WeLib.Scene.Dto
{
///
/// 情景库管理
///
[AutoMapTo(typeof(SceneInfo))]
public class SceneUpdateDto: EntityDto
{
///
/// 情景名称
///
[StringLength(SceneInfo.NameLength)]
public string Name { get; set; }
///
/// 场景类别
///
[StringLength(SceneCategoryInfo.NoLength)]
public string SceneCategory { get; set; }
// ///
// /// 场景类别
// ///
//public string SceneCategoryName { get; set; }
///
/// 情景标签
///
[StringLength(SceneInfo.TagLength)]
public string SceneTag { get; set; }
///
/// 情景描述
///
[StringLength(SceneInfo.DescLength)]
public string Description { get; set; }
///
/// 环境资源
///
public List EnvironResourceNos { get; set; }
///
/// 情景变量
///
public string Variable { get; set; }
///
/// 情景类型
///
public string GuideNos { get; set; }
public int SceneType { get; set; }
public List SceneBehaviors { get; set; }
public List Variables { get; set; }
}
}