14 lines
367 B
C#
14 lines
367 B
C#
using DataModels.Models;
|
|
|
|
namespace Contracts.BindingModels
|
|
{
|
|
public class GuarantorBindingModel : IGuarantorModel
|
|
{
|
|
public int Id { get; set; }
|
|
public string Email { get; set; } = string.Empty;
|
|
public string Name { get; set; } = string.Empty;
|
|
public string Login { get; set; } = string.Empty;
|
|
public string Password { get; set; } = string.Empty;
|
|
}
|
|
}
|