PIbd-23_Elatomtsev_L.K._Cou.../Bank/BankContracts/ViewModels/CurrencyViewModel.cs

16 lines
437 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using BankDataModels.Models;
using System.ComponentModel;
namespace BankContracts.ViewModels
{
public class CurrencyViewModel : ICurrencyModel
{
[DisplayName("Идентификатор")]
public int Id { get; set; }
[DisplayName("Название")]
public string CurrencyName { get; set; } = string.Empty;
[DisplayName("Курс")]
public double Course { get; set; }
}
}