10 lines
209 B
C#
10 lines
209 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace watcher_monitoring.Payloads;
|
|
|
|
public class HardwareDto
|
|
{
|
|
[Required]
|
|
public required int Id;
|
|
} |