Move contact endpoint from Program.cs into ContactController
Deploy Staging / deploy (push) Successful in 1m11s

This commit is contained in:
Francesco Lorenzo D'Amico
2026-08-20 11:41:05 +02:00
parent 10737b8272
commit df781eaf84
3 changed files with 49 additions and 27 deletions
@@ -0,0 +1,3 @@
namespace RazorPagesMovie.Api.V1.Contact;
public record ContactDto(string? Name, string? Email, string? Phone, string? Subject, string? Message);