23 lines
552 B
C#
23 lines
552 B
C#
using DataModels.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Contracts.BindingModels
|
|
{
|
|
public class HumanBM : IHuman
|
|
{
|
|
public string Name { get; set; } = string.Empty;
|
|
public string oldName { get; set; } = string.Empty;
|
|
public string Phone { get; set; } = string.Empty;
|
|
|
|
public int? StatusId { get; set; }
|
|
|
|
public string? StatusTitle { get; set; } = string.Empty;
|
|
|
|
public int Id { get; set; }
|
|
}
|
|
}
|