Skip to content

Commit

Permalink
Added comments for types with no comment
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanKert committed Feb 13, 2020
1 parent 7aa9456 commit 13f4d71
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
6 changes: 3 additions & 3 deletions src/fiskaltrust.ifPOS/v0/Models/SignaturItem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public partial class SignaturItem
public enum Types : long
{
/// <summary>
///
/// unknown
/// </summary>
Unknown = 0x0000,
/// <summary>
Expand Down Expand Up @@ -63,11 +63,11 @@ public enum Formats : long
/// </summary>
Unknown = 0x00,
/// <summary>
///
/// Text
/// </summary>
Text = 0x01,
/// <summary>
///
/// Link
/// </summary>
Link = 0x02,
/// <summary>
Expand Down
10 changes: 7 additions & 3 deletions src/fiskaltrust.ifPOS/v1/Models/SignaturItem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public class SignaturItem
public enum Types : long
{
/// <summary>
///
/// unknown
/// </summary>
Unknown = 0x0000,
/// <summary>
Expand Down Expand Up @@ -63,11 +63,11 @@ public enum Formats : long
/// </summary>
Unknown = 0x00,
/// <summary>
///
/// Text
/// </summary>
Text = 0x01,
/// <summary>
///
/// Link
/// </summary>
Link = 0x02,
/// <summary>
Expand Down Expand Up @@ -110,6 +110,10 @@ public enum Formats : long
/// Barcode, possible for Base32 data
/// </summary>
Code39 = 0x0C
/// <summary>
/// Base64 data
/// </summary>
Base64 = 0x0D
}

/// <summary>
Expand Down

0 comments on commit 13f4d71

Please sign in to comment.