Tour.cs 617 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. namespace AvaloniaApplicationTest.Models;
  5. public partial class Tour
  6. {
  7. public int Id { get; set; }
  8. public int TicketCount { get; set; }
  9. public string Name { get; set; } = null!;
  10. public string? Description { get; set; }
  11. public string? ImagePreview { get; set; }
  12. public decimal Price { get; set; }
  13. public BitArray IsActual { get; set; } = null!;
  14. public virtual ICollection<Hotel> Hotels { get; set; } = new List<Hotel>();
  15. public virtual ICollection<Type> Types { get; set; } = new List<Type>();
  16. }