using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WIDESEA_DTO.Basic
{
public class InitializationLocationDTO
{
///
/// 巷道号
///
public string Roadway { get; set; }
///
/// 行
///
public int MaxRow { get; set; }
///
/// 列
///
public int MaxColumn { get; set; }
///
/// 层
///
public int MaxLayer { get; set; }
}
}