Initial commit

This commit is contained in:
2025-10-05 22:25:53 +03:00
parent de0f47c739
commit 9511f1928b
13 changed files with 562 additions and 0 deletions
+14
View 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;
}
}