1
0
Fork 0
mirror of https://github.com/miawinter98/just-short-it.git synced 2024-09-20 01:39:00 +00:00
just-short-it/Model/UrlRedirect.cs
2023-04-15 15:40:46 +02:00

7 lines
268 B
C#

using System.ComponentModel.DataAnnotations;
using Microsoft.AspNetCore.Mvc;
namespace JustShortIt.Model;
[BindProperties]
public record UrlRedirect([Required, MinLength(2), MaxLength(16)]string Id, [Required, Url]string Target, [Required]string ExpirationDate);