Added sorting
All checks were successful
HopFrame CI / build (push) Successful in 55s
HopFrame CI / test (push) Successful in 1m6s

This commit is contained in:
2026-02-25 21:25:34 +01:00
parent ff2634ff41
commit e9e9fbf5e9
17 changed files with 221 additions and 58 deletions

View File

@@ -5,6 +5,8 @@ namespace TestApplication.Models;
public class User {
[Key]
public Guid Id { get; } = Guid.CreateVersion7();
public int Index { get; set; }
[EmailAddress, MaxLength(25)]
public required string Email { get; set; }