PageRenderTime 259ms CodeModel.GetById 31ms RepoModel.GetById 0ms app.codeStats 0ms

/GPX.FireMap.Workflow/GPX.FireMap.Workflow/ReturnNearestFeatures.cs

https://bitbucket.org/shope/dfu
C# | 22 lines | 19 code | 3 blank | 0 comment | 0 complexity | 1e55384dd9ba071d182d783167dae884 MD5 | raw file
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Activities;
  6. using Geocortex.Workflow.Activities;
  7. using System.ComponentModel;
  8. using ESRI.ArcGIS.Client.Tasks;
  9. namespace GPX.Firemap.Workflow.Activities.Client
  10. {
  11. [Description("Returns a nearest features to the client")]
  12. [WorkflowDesigner(
  13. DisplayName = "Return nearest features",
  14. ToolboxCategory = "FireMap External Activities")]
  15. public sealed class ReturnNearestFeatures : ExternalActivityBase
  16. {
  17. public InArgument<string[]> NearestFeatures { get; set; }
  18. }
  19. }