الملفات
ghaymah-log-monitoring-project/Models/Wonder.cs
2025-10-05 22:25:53 +03:00

14 أسطر
446 B
C#

namespace WondersAPI.Models
{
public class Wonder
{
public int Id { get; set; }
public string Name { get; set; } = string.Empty;
public string Country { get; set; } = string.Empty;
public string Era { get; set; } = string.Empty;
public string Type { get; set; } = string.Empty;
public int DiscoveryYear { get; set; }
public string Description { get; set; } = string.Empty;
}
}