19 lines
303 B
C#
19 lines
303 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace ShowTrend3.Libs
|
|||
|
{
|
|||
|
public class DiscretSignals
|
|||
|
{
|
|||
|
public int VDP = -1;
|
|||
|
public List<Discret> discret = new List<Discret>();
|
|||
|
}
|
|||
|
|
|||
|
public class Discret
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
}
|