17 lines
359 B
C#
17 lines
359 B
C#
using AccountsDataModels.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AccountsContracts.BindingModels
|
|
{
|
|
public class InterestBindingModel : IInterestModel
|
|
{
|
|
public string Name { get; set;} = String.Empty;
|
|
|
|
public int Id { get; set; }
|
|
}
|
|
}
|