HotelImage.cs 310 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. namespace AvaloniaApplicationTest.Models;
  4. public partial class HotelImage
  5. {
  6. public int Id { get; set; }
  7. public int HotelId { get; set; }
  8. public string ImageSource { get; set; } = null!;
  9. public virtual Hotel Hotel { get; set; } = null!;
  10. }