StartupBackupItem.cs 521 B

123456789101112131415161718192021
  1. using System;
  2. namespace Optimizer
  3. {
  4. [Serializable]
  5. public sealed class StartupBackupItem
  6. {
  7. public string Name { get; set; }
  8. public string FileLocation { get; set; }
  9. public string RegistryLocation { get; set; }
  10. public string StartupType { get; set; }
  11. public StartupBackupItem(string n, string fl, string rl, string st)
  12. {
  13. Name = n;
  14. FileLocation = fl;
  15. RegistryLocation = rl;
  16. StartupType = st;
  17. }
  18. }
  19. }