14 lines
296 B
C#
14 lines
296 B
C#
namespace CandyHouseContracts.BindingModels;
|
|
|
|
public class ClientBindingModel
|
|
{
|
|
public string? Id { get; set; }
|
|
|
|
public string? FIO { get; set; }
|
|
|
|
public string? PhoneNumber { get; set; }
|
|
|
|
public string? Email { get; set; }
|
|
|
|
public string? ConfigurationJson { get; set; }
|
|
} |