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; } } }