28 lines
681 B
C#
28 lines
681 B
C#
using ConstructionFirmDataModels.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Subd_4.ViewModels
|
|
{
|
|
public class TeamViewModel : ITeamModel
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
[DisplayName("Название бригады")]
|
|
public string TeamName { get; set; } = string.Empty;
|
|
|
|
[DisplayName("Имя прораба")]
|
|
public string LeaderName { get; set; } = string.Empty;
|
|
|
|
[DisplayName("Опыт работы")]
|
|
public int Experince { get; set; }
|
|
|
|
[DisplayName("Тип бригады")]
|
|
public string TeamType { get; set; } = string.Empty;
|
|
}
|
|
}
|