20 lines
634 B
C#

using System.Collections;
using System.Collections.Generic;
using System.Text.Json.Serialization;
using active_allocator.Entities;
namespace active_allocator.Models.Accounts;
public class AccountDTO
{
public int Id { get; set; }
public string Name { get; set; }
public int OwnerId { get; set; }
public DateTime LastActivity { get; set; }
public decimal Balance { get; set; }
public DateTime CreatedOn { get; set; }
public decimal InitialBalance { get; set; }
public int CurrencyId { get; set; }
public string ExternalAccountNumber { get; set; }
public List<Envelope> Envelopes { get; set; }
}