Advertisement
Guest User

Untitled

a guest
Jun 7th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
F# 0.40 KB | None | 0 0
  1. type ImportTask =
  2.     {
  3.         name    : string
  4.         token   : string
  5.         files   : array<File * ImportConfig>
  6.     }
  7.          
  8. type Message =
  9.     | Start of taskName : string
  10.     | Finished of taskName : string
  11.     | Progress of taskName : string * progress : float
  12.     | Done of azureId : Guid
  13.     | Cancelled
  14.     | Error of string
  15.  
  16. type Command =
  17.     | Import of ImportTask
  18.     | Cancel
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement