هذا الالتزام موجود في:
2025-10-05 22:25:53 +03:00
الأصل de0f47c739
التزام 9511f1928b
13 ملفات معدلة مع 562 إضافات و0 حذوفات

14
Models/Wonder.cs Normal file
عرض الملف

@@ -0,0 +1,14 @@
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;
}
}