-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathLicenseDetails.cs
25 lines (23 loc) · 1014 Bytes
/
LicenseDetails.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
// 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.
namespace Textkernel.Tx.Models.Resume
{
/// <summary>
/// A license found on a resume. These are professional licenses, not driving licenses.
/// For driving licenses, see <see cref="PersonalAttributes.DrivingLicense"/>
/// </summary>
public class LicenseDetails
{
/// <summary>
/// The name of the license
/// </summary>
public string Name { get; set; }
/// <summary>
/// <see langword="true"/> if this was found by matching to a known list of licenses.
/// <see langword="false"/> if this was found by analyzing the context and determining it was a license.
/// </summary>
public bool MatchedFromList { get; set; }
}
}