using System; using System.Collections.Generic; #nullable disable namespace Teso_API.Models { public partial class SilverBank { public string TransactionId { get; set; } public int? Amount { get; set; } public int? Balance { get; set; } public string TransactionType { get; set; } public DateTime? Timestamp { get; set; } } }