Clients/Idle/FormIdleClient.cs
author StephaneLenclud
Tue, 02 Feb 2016 19:50:33 +0100
changeset 189 bedae992f4ee
permissions -rw-r--r--
Creating Idle Client project.
StephaneLenclud@189
     1
using System;
StephaneLenclud@189
     2
using System.Collections.Generic;
StephaneLenclud@189
     3
using System.ComponentModel;
StephaneLenclud@189
     4
using System.Data;
StephaneLenclud@189
     5
using System.Drawing;
StephaneLenclud@189
     6
using System.Linq;
StephaneLenclud@189
     7
using System.Text;
StephaneLenclud@189
     8
using System.Threading.Tasks;
StephaneLenclud@189
     9
using System.Windows.Forms;
StephaneLenclud@189
    10
StephaneLenclud@189
    11
namespace SharpDisplayIdleClient
StephaneLenclud@189
    12
{
StephaneLenclud@189
    13
    public partial class FormIdleClient : Form
StephaneLenclud@189
    14
    {
StephaneLenclud@189
    15
        public StartParams Params { get; set; }
StephaneLenclud@189
    16
StephaneLenclud@189
    17
        public FormIdleClient()
StephaneLenclud@189
    18
        {
StephaneLenclud@189
    19
            InitializeComponent();
StephaneLenclud@189
    20
        }
StephaneLenclud@189
    21
    }
StephaneLenclud@189
    22
}