using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace LangGuan.Command.Model.EntityModel
{
public class Plan : BaseModel
{
public string name { get; set; }
public string description { get; set; }
///
/// 组列表
///
public IEnumerable groups { get; set; }
///
/// 设备列表
///
public IEnumerable deviceIds { get; set; }
///
/// 执行计划
///
public string cron { get; set; }
///
/// 执行时长
///
public int execution { get; set; }
///
/// 是否启用
///
public bool disable { get; set; }
}
}