mirror of
https://github.com/markjprice/cs11dotnet7.git
synced 2025-12-06 05:32:03 +01:00
10 lines
192 B
C#
10 lines
192 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Northwind.Mvc.Models;
|
|
|
|
public record Thing(
|
|
[Range(1, 10)] int? Id,
|
|
[Required] string? Color,
|
|
[EmailAddress] string? Email
|
|
);
|