Server/EarManager.cs
author StephaneLenclud
Tue, 16 Aug 2016 12:59:32 +0200
changeset 235 ba14a29944c4
permissions -rw-r--r--
Removing JSON type converter from ear manager.
Using bindings for some application settings.
StephaneLenclud@235
     1
using SharpLib.Utils;
StephaneLenclud@235
     2
using System;
StephaneLenclud@235
     3
using System.Collections.Generic;
StephaneLenclud@235
     4
using System.ComponentModel;
StephaneLenclud@235
     5
using System.Data;
StephaneLenclud@235
     6
using System.Linq;
StephaneLenclud@235
     7
using System.Runtime.Serialization;
StephaneLenclud@235
     8
using System.Text;
StephaneLenclud@235
     9
using System.Threading.Tasks;
StephaneLenclud@235
    10
using Ear = SharpLib.Ear;
StephaneLenclud@235
    11
StephaneLenclud@235
    12
namespace SharpDisplayManager
StephaneLenclud@235
    13
{
StephaneLenclud@235
    14
    /// <summary>
StephaneLenclud@235
    15
    /// Allow saving our EAR manager as JSON within our application settings.
StephaneLenclud@235
    16
    /// </summary>
StephaneLenclud@235
    17
    [DataContract]
StephaneLenclud@235
    18
    [TypeConverter(typeof(TypeConverterJson<EarManager>))]
StephaneLenclud@235
    19
    public class EarManager: Ear.Manager
StephaneLenclud@235
    20
    {
StephaneLenclud@235
    21
    }
StephaneLenclud@235
    22
}