Files
secdevops-csharp-app/Models/Books.cs
Achim H. 251776b9fd
All checks were successful
Tests / Declarative: Post Actions No test results found
csharp-secdevops-pipeline-pod/pipeline/head This commit looks good
Complete Rebuild of Project from HelloWorld to Blazer WebApp
2026-05-12 09:16:44 +02:00

8 lines
261 B
C#

namespace SecDevOpsLab.Models;
using System.ComponentModel.DataAnnotations;
public class Book {
public int Id { get; set; }
[Required] public string Title { get; set; } = string.Empty;
[Required] public string Author { get; set; } = string.Empty;
}