ReactiveWpfApp.Note.Note C# (CSharp) Method

Note() public method

public Note ( ) : System
return System
        public Note()
        {
            Title = new Active<string>("Note Title");
            Text = new Active<string>("");
            Tags = new ObservableCollection<string>();
        }