Started working on editor dialog
All checks were successful
HopFrame CI / build (push) Successful in 46s
HopFrame CI / test (push) Successful in 57s

This commit is contained in:
2026-02-27 17:52:27 +01:00
parent e9e9fbf5e9
commit 0a00146a35
13 changed files with 402 additions and 28 deletions

View File

@@ -0,0 +1,23 @@
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
namespace TestApplication.Models;
public class Typer {
[Key]
public Guid Id { get; set; }
public int Number { get; set; }
public bool Toggle { get; set; }
public DateTime DateTime { get; set; }
public DateOnly DateOnly { get; set; }
public TimeOnly TimeOnly { get; set; }
public ListSortDirection SortDirection { get; set; }
public string? Text { get; set; }
[EmailAddress]
public string? Mail { get; set; }
public string? LongText { get; set; }
public string? Password { get; set; }
public string? PhoneNumber { get; set; }
public List<string> List { get; set; } = new();
public List<ListSortDirection> SortDirections { get; set; } = new();
}