Example #1
0
        public TrackedApp(string _trackedAppName, StateType _state, List <ActionApp> _launchAppList, List <ActionApp> _closeAppList, int _screenResolutionIndex, bool _isActive)
        {
            TrackedAppName        = _trackedAppName;
            State                 = (int)_state;
            LaunchAppList         = _launchAppList;
            CloseAppList          = _closeAppList;
            ScreenResolutionIndex = _screenResolutionIndex;
            IsActive              = _isActive;

            JsonData.AddTrackedApp(this);
        }