HotelComment.cs 402 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. namespace AvaloniaApplicationTest.Models;
  4. public partial class HotelComment
  5. {
  6. public int Id { get; set; }
  7. public int HotelId { get; set; }
  8. public string Text { get; set; } = null!;
  9. public string Author { get; set; } = null!;
  10. public DateTime CreationDate { get; set; }
  11. public virtual Hotel Hotel { get; set; } = null!;
  12. }