PIbd-33_Abazov_A.A._KOP_29/AbazovApp/AccountsDataModels/Models/IInterestModel.cs
2023-11-16 19:01:46 +04:00

14 lines
243 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AccountsDataModels.Models
{
public interface IInterestModel : IId
{
string Name { get; }
}
}