Country.cs 379 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. namespace TourAgent.Models
  4. {
  5. public partial class Country
  6. {
  7. public Country()
  8. {
  9. Hotels = new HashSet<Otel>();
  10. }
  11. public string Code { get; set; } = null!;
  12. public string Name { get; set; } = null!;
  13. public virtual ICollection<Otel> Hotels { get; set; }
  14. }
  15. }