StartupBackupItem.cs 593 B

123456789101112131415161718192021
  1. using System;
  2. namespace Optimizer
  3. {
  4. [Serializable]
  5. public sealed class BackupStartupItem
  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 BackupStartupItem(string name, string fileLocation, string registryLocation, string startupType)
  12. {
  13. Name = name;
  14. FileLocation = fileLocation;
  15. RegistryLocation = registryLocation;
  16. StartupType = startupType;
  17. }
  18. }
  19. }