using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SchoolContracts.ViewModels { public class ClientViewModel { public int Id { get; set; } public string ClientName { get; set; } public string ClientEmail { get; set; } public string ClientPassword { get; set; } public string ClientPhone { get; set; } } }