StartupBackupItem.cs 677 B

123456789101112131415161718192021
  1. using System;
  2. namespace Optimizer {
  3. /// <summary>
  4. /// Represents a backup of a Windows base startup item
  5. /// </summary>
  6. [Serializable]
  7. public sealed class BackupStartupItem {
  8. public string Name { get; set; }
  9. public string FileLocation { get; set; }
  10. public string RegistryLocation { get; set; }
  11. public string StartupType { get; set; }
  12. public BackupStartupItem(string name, string fileLocation, string registryLocation, string startupType) {
  13. Name = name;
  14. FileLocation = fileLocation;
  15. RegistryLocation = registryLocation;
  16. StartupType = startupType;
  17. }
  18. }
  19. }