using AutobusApi.Domain.Common; namespace AutobusApi.Domain.Entities; public class User : EntityBase { public int IdentityId { get; set; } public ICollection TicketGroups { get; set; } = null!; public ICollection Reviews { get; set; } = null!; }