using Blue;
///
/// Immersal设置命令
/// 传入 id、projectId、location
///
public class ImmersalSetLocalCommand : ICommand
{
public int id;
public int projectId;
public bool location;
public ImmersalSetLocalCommand(int id,int projectId,bool location)
{
this.id = id;
this.projectId = projectId;
this.location = location;
}
public void OnExcute()
{
this.GetService().Set(id,projectId,location);
}
}