-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTwoPointPolarAlignment.cs
More file actions
31 lines (27 loc) · 1.14 KB
/
Copy pathTwoPointPolarAlignment.cs
File metadata and controls
31 lines (27 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
using NINA.Plugin;
using NINA.Plugin.Interfaces;
using NINA.Profile.Interfaces;
using NINA.WPF.Base.Interfaces.Mediator;
using NINA.WPF.Base.Interfaces.ViewModel;
using System.ComponentModel;
using System.ComponentModel.Composition;
using System.Runtime.CompilerServices;
using System.Threading.Tasks;
namespace NirZonshine.NINA.TwoPointPolarAlignment {
/// <summary>
/// This class exports the IPluginManifest interface and will be used for the general plugin information and options
/// </summary>
[Export(typeof(IPluginManifest))]
public class TwoPointPolarAlignment : PluginBase, INotifyPropertyChanged {
[ImportingConstructor]
public TwoPointPolarAlignment(IProfileService profileService, IOptionsVM options, IImageSaveMediator imageSaveMediator) {
}
public override Task Teardown() {
return base.Teardown();
}
public event PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged([CallerMemberName] string propertyName = null) {
this.PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
}
}
}