using System.ComponentModel.DataAnnotations; namespace RazorPages.Models; public class Climb { public int Id {get; set;} public string? Name {get; set;} public string? Grade {get; set;} public string? Location {get; set;} public string? Description {get; set;} }