123456789101112131415161718 |
- using System;
- using System.Collections.Generic;
- namespace TourAgent.Models
- {
- public partial class Country
- {
- public Country()
- {
- Hotels = new HashSet<Otel>();
- }
- public string Code { get; set; } = null!;
- public string Name { get; set; } = null!;
- public virtual ICollection<Otel> Hotels { get; set; }
- }
- }
|