20 lines
469 B
C#
20 lines
469 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SchoolContracts.BindingModel
|
|
{
|
|
public class ClientBindingModel
|
|
{
|
|
public int Id { get; set; }
|
|
public string ClientName { get; set; } = string.Empty;
|
|
public string ClientEmail { get; set; } = string.Empty;
|
|
public string ClientPhone { get; set; } = string.Empty;
|
|
public string ClientPassword { get; set; } = string.Empty;
|
|
}
|
|
}
|
|
|
|
|