using System; using System.Collections.Generic; namespace administration.Models; public partial class AdditionalSource { public int Id { get; set; } public string TransactionType { get; set; } = null!; public int Amount { get; set; } public string Description { get; set; } = null!; public DateOnly Date { get; set; } public int LogoId { get; set; } public int UserId { get; set; } public virtual Logo Logo { get; set; } = null!; public virtual User User { get; set; } = null!; }