This commit is contained in:
Chris
2026-04-07 20:35:53 +02:00
parent a0e60d2a4d
commit 947b34ad13
212 changed files with 0 additions and 0 deletions

35
6/Models/Author.cs Normal file
View File

@@ -0,0 +1,35 @@
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
namespace Example.Models
{
public class Author
{
public Author() {}
public Author(string firstName, string lastName, DateTime birthdate)
{
FirstName = firstName;
LastName = lastName;
Birthdate = birthdate;
}
public int Id { get; set; }
[Required]
[StringLength(100)]
[DisplayName("First name")]
public string FirstName { get; set; } = string.Empty;
[Required]
[StringLength(100)]
[DisplayName("Last name")]
public string LastName { get; set; } = string.Empty;
[DataType(DataType.Date)]
[DisplayName("Birthdate")]
public DateTime Birthdate { get; set; }
public ICollection<Review> Reviews { get; set; } = new List<Review>();
}
}