Server/EarManager.cs
author StephaneLenclud
Wed, 28 Sep 2016 22:31:27 +0200
changeset 269 8e32e51a2edd
permissions -rw-r--r--
Published V1.3.2.0
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
}