23 lines
591 B
C#
Raw Permalink Normal View History

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;
2023-05-06 01:31:48 +03:00
public string oldName { get; set; } = string.Empty;
public string Phone { get; set; } = string.Empty;
2023-05-08 15:15:10 +03:00
public int number { get; set; }
public int? StatusId { get; set; }
2023-05-05 20:47:09 +03:00
public string? StatusTitle { get; set; } = string.Empty;
public int Id { get; set; }
}
}