15 lines
372 B
C#
15 lines
372 B
C#
|
|
using DataModels.Models;
|
|
|
|
namespace Contracts.BindingModels
|
|
{
|
|
public class ImplementerBindingModel : IImplementerModel
|
|
{
|
|
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;
|
|
}
|
|
}
|