using System; using System.Collections.Generic; using System.Linq; using System.Runtime.Serialization; using System.Text; using System.Threading.Tasks; namespace VetClinicBusinessLogic.ViewModels { [DataContract] public class ClientViewModel { public int Id { get; set; } public string Name { get; set; } public string Pet { get; set; } public string PetName { get; set; } public string Email { get; set; } public string Phone { get; set; } } }