diff --git a/src/ReC.Application/Endpoints/Commands/CreateEndpointCommand.cs b/src/ReC.Application/Endpoints/Commands/CreateEndpointCommand.cs new file mode 100644 index 0000000..4472ea5 --- /dev/null +++ b/src/ReC.Application/Endpoints/Commands/CreateEndpointCommand.cs @@ -0,0 +1,22 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel.DataAnnotations; +using System.ComponentModel.DataAnnotations.Schema; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ReC.Application.Endpoints.Commands; + +public class CreateEndpointCommand +{ +} + +public class Endpoint +{ + public bool Active { get; set; } = true; + + public string? Description { get; set; } + + public string Uri { get; set; } = null!; +} \ No newline at end of file