[WIP]second flow with shape files and extra input.

This commit is contained in:
2020-04-07 13:46:58 +02:00
parent b1fe1a1efb
commit a757355d50
7 changed files with 177 additions and 21 deletions

View File

@@ -15,8 +15,10 @@ namespace FarmmapsApi.Models
public string TaskType { get; set; }
public string Code { get; set; }
public string Message { get; set; }
public ItemTaskState State { get; set; }
public ItemTaskState State { get; set; } = ItemTaskState.Scheduled;
public DateTime? Started { get; set; }
public DateTime? Finished { get; set; }
public bool IsFinished => State == ItemTaskState.Error || State == ItemTaskState.Ok;
}
}