StartupBackupItem.cs 616 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Optimizer
  7. {
  8. [Serializable]
  9. public class StartupBackupItem
  10. {
  11. public string Name { get; set; }
  12. public string FileLocation { get; set; }
  13. public string RegistryLocation { get; set; }
  14. public string StartupType { get; set; }
  15. public StartupBackupItem(string n, string fl, string rl, string st)
  16. {
  17. Name = n;
  18. FileLocation = fl;
  19. RegistryLocation = rl;
  20. StartupType = st;
  21. }
  22. }
  23. }