namespace WondersAPI.Models { /// /// Represents a wonder of the world. /// public class Wonder { /// /// The unique identifier of the wonder. /// /// 1 public int Id { get; set; } /// /// The name of the wonder. /// /// Pyramids of Giza public string Name { get; set; } /// /// The country where the wonder is located. /// /// Egypt public string Country { get; set; } /// /// The historical era of the wonder. /// /// Ancient public string Era { get; set; } /// /// The type of the wonder. /// /// Tomb public string Type { get; set; } /// /// A short description of the wonder. /// /// One of the Seven Wonders of the Ancient World. public string Description { get; set; } /// /// The year the wonder was discovered or built. /// /// -2560 public int DiscoveryYear { get; set; } } }