-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathJobTitles.cs
31 lines (27 loc) · 999 Bytes
/
JobTitles.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// Copyright © 2023 Textkernel BV. All rights reserved.
// This file is provided for use by, or on behalf of, Textkernel licensees
// within the terms of their license of Textkernel products or Textkernel customers
// within the Terms of Service pertaining to the Textkernel SaaS products.
using System.Collections.Generic;
using Textkernel.Tx.Models.Resume.Employment;
namespace Textkernel.Tx.Models.Job
{
/// <summary>
/// Job titles found in a job description
/// </summary>
public class JobTitles
{
/// <summary>
/// The main/overall job title
/// </summary>
public string MainJobTitle { get; set; }
/// <summary>
/// All job titles found in the job description
/// </summary>
public List<string> JobTitle { get; set; }
/// <summary>
/// Normalized profession for the main job title.
/// </summary>
public ParsingNormalizedProfession NormalizedProfession {get;set;}
}
}