12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- namespace AvaloniaApplicationTest.Models;
- public partial class HotelComment
- {
- public int Id { get; set; }
- public int HotelId { get; set; }
- public string Text { get; set; } = null!;
- public string Author { get; set; } = null!;
- public DateTime CreationDate { get; set; }
- public virtual Hotel Hotel { get; set; } = null!;
- }
|