17 lines
361 B
C#
17 lines
361 B
C#
using PersonnelDepartmentDataModels.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace PersonnelDepartmentContracts.BindingModels
|
|
{
|
|
public class PositionBindingModel : IPositionModel
|
|
{
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
public int Id { get; set; }
|
|
}
|
|
}
|