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.
StephaneLenclud@210
     1
//
StephaneLenclud@210
     2
StephaneLenclud@210
     3
StephaneLenclud@210
     4
using System.Runtime.Serialization;
StephaneLenclud@210
     5
using System.Threading;
StephaneLenclud@210
     6
StephaneLenclud@210
     7
namespace SharpLib.Ear
StephaneLenclud@210
     8
{
StephaneLenclud@210
     9
    [DataContract]
StephaneLenclud@210
    10
    public abstract class ActionType
StephaneLenclud@210
    11
    {
StephaneLenclud@210
    12
        [DataMember]
StephaneLenclud@210
    13
        public string Name { get; protected set;  }
StephaneLenclud@210
    14
        [DataMember]
StephaneLenclud@210
    15
        public string Description { get; protected set; }
StephaneLenclud@210
    16
    }
StephaneLenclud@210
    17
StephaneLenclud@210
    18
StephaneLenclud@210
    19
}