[Tts] Make SynthesizedPcmEventArgs inherit System.EventArgs (#5540)
authorSuyeon Hwang <35016426+stom-hwang@users.noreply.github.com>
Wed, 13 Sep 2023 11:25:24 +0000 (20:25 +0900)
committerGitHub <noreply@github.com>
Wed, 13 Sep 2023 11:25:24 +0000 (20:25 +0900)
Signed-off-by: Suyeon Hwang <stom.hwang@samsung.com>
src/Tizen.Uix.Tts/Tizen.Uix.Tts/SynthesizedPcmEventArgs.cs

index 5669570..33c7332 100644 (file)
 */
 
 
+using System;
+
 namespace Tizen.Uix.Tts
 {
     /// <summary>
     /// This class holds information related to the TTS SynthesizedPcm event.
     /// </summary>
     /// <since_tizen> 11 </since_tizen>
-    public class SynthesizedPcmEventArgs
+    public class SynthesizedPcmEventArgs : EventArgs
     {
         internal SynthesizedPcmEventArgs(int utteranceId, SynthesizedPcmEvent synthesizedPcmEvent, byte[] data, AudioType audioType, int sampleRate)
         {