12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- namespace TourAgent.Models
- {
- public partial class Type
- {
- public Type()
- {
- TypeOfTours = new HashSet<TypeOfTour>();
- }
- public int Id { get; set; }
- public string Name { get; set; } = null!;
- public string? Description { get; set; }
- public virtual ICollection<TypeOfTour> TypeOfTours { get; set; }
- }
- }
|