You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
411 B

using Infrastructure.Domain;
namespace Application.Domain.Entities
{
public class Button : BaseEntity
{
public string Name { get; set; }
public string Message { get; set; }
public string SerialPort { get; set; }
public int Baud { get; set; }
public int Data { get; set; }
public int Partity { get; set; }
public int StopBits { get; set; }
}
}