namespace AutobusApi.Domain.Common; public class EntityBase { public int Id { get; set; } public bool IsDeleted { get; set; } = false; }