Initial commit
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user