No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

IncomingChangesNotification.cs 565B

1234567891011121314151617181920
  1. namespace Unity.PlasticSCM.Editor.UI.StatusBar
  2. {
  3. internal class IncomingChangesNotification
  4. {
  5. internal string InfoText;
  6. internal string ActionText;
  7. internal string TooltipText;
  8. internal bool HasUpdateAction;
  9. internal PlasticNotification.Status Status;
  10. internal void Clear()
  11. {
  12. InfoText = string.Empty;
  13. ActionText = string.Empty;
  14. TooltipText = string.Empty;
  15. HasUpdateAction = false;
  16. Status = PlasticNotification.Status.None;
  17. }
  18. }
  19. }