16 lines
426 B
C#
16 lines
426 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CompanyManagment.App.Contracts.InsuranceJob;
|
|
|
|
public class InsuranceJobViewModel
|
|
{
|
|
public long Id { get; set; }
|
|
public string InsuranceJobTitle { get; set; }
|
|
//public long YearlySalaryId { get; set; }
|
|
public string EconomicCode { get; set; }
|
|
public string Year { get; set; }
|
|
} |