namespace Admin.Core.Service.Admin.View.Input
{
public class ViewSyncDto
{
///
/// 视图命名
///
public string Name { get; set; }
///
/// 地址
///
public string Path { get; set; }
///
/// 视图名称
///
public string Label { get; set; }
///
/// 说明
///
public string Description { get; set; }
///
/// 缓存
///
public bool Cache { get; set; } = true;
}
}