IProgressInfo.cs 431 B

1234567891011121314151617181920212223
  1. namespace Unity.Cloud.Collaborate.Models.Structures
  2. {
  3. internal interface IProgressInfo
  4. {
  5. string Title { get; }
  6. string Details { get; }
  7. int CurrentCount { get; }
  8. int TotalCount { get; }
  9. string LastErrorString { get; }
  10. ulong LastError { get; }
  11. bool CanCancel { get; }
  12. bool PercentageProgressType { get; }
  13. int PercentageComplete { get; }
  14. }
  15. }