18 lines
337 B
C#
18 lines
337 B
C#
using DeviceCommand.Base;
|
|
using Model.Model;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DeviceCommand.Devices
|
|
{
|
|
public class CTS3 : EnovaDataReporter
|
|
{
|
|
public CTS3(HttpClient httpClient) : base(httpClient)
|
|
{
|
|
}
|
|
}
|
|
}
|