14 lines
281 B
C#
14 lines
281 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace MoonlightServers.Shared.Admin.Nodes;
|
|
|
|
public class UpdateNodeDto
|
|
{
|
|
[Required]
|
|
[MaxLength(50)]
|
|
public string Name { get; set; }
|
|
|
|
[Required]
|
|
[MaxLength(100)]
|
|
public string HttpEndpointUrl { get; set; }
|
|
} |