123456789101112131415161718192021 |
- using System;
- namespace Optimizer
- {
- [Serializable]
- public sealed class StartupBackupItem
- {
- public string Name { get; set; }
- public string FileLocation { get; set; }
- public string RegistryLocation { get; set; }
- public string StartupType { get; set; }
- public StartupBackupItem(string n, string fl, string rl, string st)
- {
- Name = n;
- FileLocation = fl;
- RegistryLocation = rl;
- StartupType = st;
- }
- }
- }
|