Romanov_E.V._CourseWork_Vet.../VeterinaryClinicDataModels/Models/IMedicationModel.cs
10Г Егор Романов a572b79a6f start
2023-04-07 14:13:18 +04:00

16 lines
328 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Security.Cryptography;
using System.Text;
using System.Threading.Tasks;
namespace VeterinaryClinicDataModels.Models
{
public interface IMedicationModel : IId
{
string MedicationName { get; }
double Cost { get; }
}
}