20 lines
515 B
C#
20 lines
515 B
C#
using ConstructionFirmDataModels;
|
|
using ConstructionFirmDataModels.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Subd_4.BindingModels
|
|
{
|
|
public class TeamBindingModel : ITeamModel
|
|
{
|
|
public int Id { get; set; }
|
|
public string TeamName { get; set; } = string.Empty;
|
|
public string LeaderName { get; set; } = string.Empty;
|
|
public int Experince { get; set; }
|
|
public string TeamType { get; set; } = string.Empty;
|
|
}
|
|
}
|