author | StephaneLenclud |
Mon, 02 Jan 2017 15:50:50 +0100 | |
changeset 272 | 10de0c7c2fed |
permissions | -rw-r--r-- |
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 |
} |