19 lines
398 B
C#
19 lines
398 B
C#
|
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; }
|
|||
|
}
|
|||
|
|
|||
|
}
|