using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace Order.Api.Entity { public class Bank { public int Id { get; set; } public decimal Money { get; set; } } }