Country.cs 302 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. namespace AvaloniaApplicationTest.Models;
  4. public partial class Country
  5. {
  6. public string Code { get; set; } = null!;
  7. public string Name { get; set; } = null!;
  8. public virtual ICollection<Hotel> Hotels { get; set; } = new List<Hotel>();
  9. }