PIbd-33_Abazov_A.A._KOP_29/AbazovApp/AccountsContracts/ViewModels/InterestViewModel.cs

18 lines
424 B
C#
Raw Normal View History

2023-11-16 19:22:13 +04:00
using AccountsDataModels.Models;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AccountsContracts.ViewModels
{
public class InterestViewModel : IInterestModel
{
[DisplayName("Название")]
public string Name { get; set; } = string.Empty;
public int Id { get; set; }
}
}