using System;
using Abp.AutoMapper;
using Abp.Application.Services.Dto;
namespace WePlatform.WeModel.Engine.Dto
{
///
/// 推演引擎管理
///
[AutoMapTo(typeof(EngineInfo)),AutoMapFrom(typeof(EngineInfo))]
public class EngineDto: EntityDto
{
///
/// 引擎名称
///
public string EngineName { get; set; }
///
/// 引擎版本
///
public string Version { get; set; }
///
/// 引擎描述
///
public string Description { get; set; }
///
/// 运行器类全名
///
public string RunnerClassName { get; set; }
///
/// 引擎类型名称
///
public string EngineTypeName { get; set; }
}
}