- using System;
- using System.Collections.Generic;
- namespace nukakto.Models
- {
- public partial class TypeAttraction
- {
- public int IdType { get; set; }
- public string Name { get; set; } = null!;
- public int IdAttractions { get; set; }
- public virtual Attraction IdAttractionsNavigation { get; set; } = null!;
- }
- }
|