using System.ComponentModel.DataAnnotations; namespace TicketOffice.Models; public class Route { public int Id { get; set; } public int Number { get; set; } public int Capacity { get; set; } public ICollection Cities { get; set; } public ICollection? Tickets { get; set; } }