-
-
Notifications
You must be signed in to change notification settings - Fork 150
/
Copy pathNoteElement.cs
34 lines (31 loc) · 1.04 KB
/
NoteElement.cs
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
32
33
34
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
namespace Iot.Device.Buzzer.Samples
{
/// <summary>
/// Note element to define Note and Octave of sound in melody.
/// </summary>
internal class NoteElement : MelodyElement
{
/// <summary>
/// Note of sound in melody sequence.
/// </summary>
public Note Note { get; set; }
/// <summary>
/// Octave of sound in melody sequence.
/// </summary>
public Octave Octave { get; set; }
/// <summary>
/// Create Note element.
/// </summary>
/// <param name="note">Note of sound.</param>
/// <param name="octave">Octave of sound.</param>
/// <param name="duration">Duration of sound in melody sequence timeline.</param>
public NoteElement(Note note, Octave octave, Duration duration)
: base(duration)
{
Note = note;
Octave = octave;
}
}
}