HostMqttInfoDto.cs 247 B

123456789101112
  1. using System.ComponentModel.DataAnnotations;
  2. namespace Safeguard.Dtos
  3. {
  4. public class HostMqttInfoDto
  5. {
  6. [Required]
  7. public string? IPAddress { get; set; }
  8. [Required]
  9. public int? Port { get; set; }
  10. }
  11. }