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