13 lines
335 B
C#
13 lines
335 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; }
|
|
[Required]
|
|
public required string Key { get; set; }
|
|
} |