BlogEngine.Core.Notes.QuickNotes.Note C# (CSharp) Method

Note() public method

The note
public Note ( System.Guid id ) : QuickNote
id System.Guid Note ID
return QuickNote
        public QuickNote Note(Guid id)
        {
            return Notes.Where(n => n.Id == id).FirstOrDefault();
        }