HotelImage.cs 324 B

1234567891011121314
  1. using System;
  2. using System.Collections.Generic;
  3. namespace TourAgent.Models
  4. {
  5. public partial class HotelImage
  6. {
  7. public int Id { get; set; }
  8. public int HotelId { get; set; }
  9. public byte[] ImageSource { get; set; } = null!;
  10. public virtual Hotel Hotel { get; set; } = null!;
  11. }
  12. }