SharpLibEar/ActionType.cs
author StephaneLenclud
Sat, 07 Jan 2017 20:21:42 +0100
changeset 277 71ba0dd622a5
permissions -rw-r--r--
Created Audio Manager class.
Clean up CScore audio usage.
Fixing broken audio device change handler.
Fixed various audio Dispose deadlock due to Invoke usage.
Thus now using BeginInvoke instead.
     1 //
     2 
     3 
     4 using System.Runtime.Serialization;
     5 using System.Threading;
     6 
     7 namespace SharpLib.Ear
     8 {
     9     [DataContract]
    10     public abstract class ActionType
    11     {
    12         [DataMember]
    13         public string Name { get; protected set;  }
    14         [DataMember]
    15         public string Description { get; protected set; }
    16     }
    17 
    18 
    19 }