13 lines
351 B
C#
13 lines
351 B
C#
using SYBDDataModels.Models;
|
|
|
|
namespace SYBDContracts.BindingModels
|
|
{
|
|
public class ClientBindingModel : IClientModel
|
|
{
|
|
public int Id { get; set; }
|
|
public string Fullname { get; set; } = string.Empty;
|
|
public string Phone { get; set; } = string.Empty;
|
|
public string Email { get; set; } = string.Empty;
|
|
|
|
}
|
|
} |