This commit is contained in:
goblinrf 2024-04-24 14:32:51 +04:00
parent fd9c4ed6d8
commit ca5e671616
2 changed files with 13 additions and 1 deletions

View File

@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace VetClinicContracts.BindingModels
{
public class VaccinationBindingModel
{
}
}

View File

@ -10,7 +10,6 @@ namespace VetClinicDataModels.Models
{
int AnimalId { get; }
string NameVaccination { get; }
double CostVaccination { get; }
DateTime DateStamp { get; }
}