initial push
Some checks failed
Build and Push Docker Image / docker (push) Has been cancelled

This commit is contained in:
2026-04-07 21:09:18 +00:00
commit d48d2a7b79
108 changed files with 78378 additions and 0 deletions

21
Models/Book.cs Normal file
View File

@@ -0,0 +1,21 @@
using System.ComponentModel.DataAnnotations;
namespace Example.Models
{
public class Book
{
public Book() {}
public int Id { get; set; }
[Required]
[StringLength(200)]
public string Title { get; set; } = string.Empty;
[StringLength(1000)]
public string Summary { get; set; } = string.Empty;
[DataType(DataType.Date)]
public DateTime Published { get; set; }
}
}