You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
648 B
29 lines
648 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Runtime.Serialization;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Model
|
|
{
|
|
[DataContract(Name = "veterinaire")]
|
|
public class Veterinaire : Entite
|
|
{
|
|
[DataMember(Name = "clinique")]
|
|
public string Clinique
|
|
{
|
|
get => clinique;
|
|
set
|
|
{
|
|
if(clinique == value)
|
|
return;
|
|
clinique = value;
|
|
OnPropertyChanged(nameof(Clinique));
|
|
}
|
|
}
|
|
private string clinique;
|
|
}
|
|
}
|