20 lines
480 B
C#
20 lines
480 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using static AgroBase.Models.Enums;
|
|
|
|
namespace AgroBase.Models
|
|
{
|
|
public class AlarmeModel
|
|
{
|
|
public S_Code Tipo { get; set; }
|
|
public double Valor { get; set; }
|
|
public bool Minimo { get;set; }
|
|
public bool Maximo { get;set; }
|
|
public bool ParaMinimo { get; set; }
|
|
public bool ParaMaximo { get; set; }
|
|
}
|
|
}
|