namespace FinControl.Domain.Entities; public class Transfer { public Guid Id { get; set; } = Guid.NewGuid(); public Guid SourceAccountId { get; set; } public Guid DestinationAccountId { get; set; } public decimal Amount { get; set; } public DateTime Date { get; set; } = DateTime.UtcNow; public string? Observation { get; set; } public DateTime CreatedAt { get; set; } = DateTime.UtcNow; public Account? SourceAccount { get; set; } public Account? DestinationAccount { get; set; } }