13 lines
326 B
C#
13 lines
326 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Runtime.CompilerServices;
|
|
|
|
namespace watcher_monitoring.Payloads;
|
|
|
|
public class RegistrationDto
|
|
{
|
|
[Required]
|
|
public required string ipAddress { get; set; }
|
|
|
|
public required string hostName { get; set; }
|
|
} |