30 lines
910 B
C#
30 lines
910 B
C#
using AgroBase.Services;
|
|
using CefSharp.WinForms;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
|
|
namespace AgroBase.Models
|
|
{
|
|
public class CameraSoloModel
|
|
{
|
|
public string Nome { get; set; }
|
|
public int Posicao { get; set; }
|
|
public CameraService<CameraCoordenadasFrameModel> camera { get; set; }
|
|
public ChromiumWebBrowser browser { get; set; }
|
|
public Panel panel { get;set; }
|
|
public ComboBox combo { get;set; }
|
|
public string ArquivoLeitura { get; set; }
|
|
public int MaxLeituras { get; set; }
|
|
public string VideoPorta { get; set; }
|
|
public string VideoUrl { get; set; }
|
|
public string SocketPorta { get; set; }
|
|
public string CameraSelecionada { get; set; }
|
|
|
|
public int ErvasNoRadar { get; set; }
|
|
}
|
|
}
|