StephaneLenclud@235: using SharpLib.Utils; StephaneLenclud@235: using System; StephaneLenclud@235: using System.Collections.Generic; StephaneLenclud@235: using System.ComponentModel; StephaneLenclud@235: using System.Data; StephaneLenclud@235: using System.Linq; StephaneLenclud@235: using System.Runtime.Serialization; StephaneLenclud@235: using System.Text; StephaneLenclud@235: using System.Threading.Tasks; StephaneLenclud@235: using Ear = SharpLib.Ear; StephaneLenclud@235: StephaneLenclud@235: namespace SharpDisplayManager StephaneLenclud@235: { StephaneLenclud@235: /// StephaneLenclud@235: /// Allow saving our EAR manager as JSON within our application settings. StephaneLenclud@235: /// StephaneLenclud@235: [DataContract] StephaneLenclud@235: [TypeConverter(typeof(TypeConverterJson))] StephaneLenclud@235: public class EarManager: Ear.Manager StephaneLenclud@235: { StephaneLenclud@235: } StephaneLenclud@235: }