-
-
Notifications
You must be signed in to change notification settings - Fork 113
/
Copy pathTripletVersion.cs
41 lines (36 loc) · 1.07 KB
/
TripletVersion.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
32
33
34
35
36
37
38
39
40
41
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
namespace Iot.Device.Pn5180
{
/// <summary>
/// Versions of the reader
/// </summary>
public class TripletVersion
{
/// <summary>
/// Constructor
/// </summary>
/// <param name="product">Product version</param>
/// <param name="firmware">Firmware version</param>
/// <param name="eeprom">EEPROM version</param>
public TripletVersion(Version product, Version firmware, Version eeprom)
{
Product = product;
Firmware = firmware;
Eeprom = eeprom;
}
/// <summary>
/// Product version
/// </summary>
public Version Product { get; set; }
/// <summary>
/// Firmware version
/// </summary>
public Version Firmware { get; set; }
/// <summary>
/// EEPROM version
/// </summary>
public Version Eeprom { get; set; }
}
}