15 lines
337 B
C#
15 lines
337 B
C#
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace BankDatabase.Models;
|
|
|
|
public class CreditProgramCurrency
|
|
{
|
|
public required string CreditProgramId { get; set; }
|
|
|
|
public required string CurrencyId { get; set; }
|
|
|
|
public CreditProgram? CreditProgram { get; set; }
|
|
|
|
public Currency? Currency { get; set; }
|
|
}
|