Skip to content

Commit

Permalink
[Common types] Add missing navigation fields to device report.
Browse files Browse the repository at this point in the history
  • Loading branch information
claunia committed May 11, 2024
1 parent c254bdf commit 459cc61
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Aaru.CommonTypes/Metadata/DeviceReport.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1256,6 +1256,9 @@ public class SscSupportedMedia
public string Organization { get; set; }
public string Name { get; set; }
public string Description { get; set; }

[JsonIgnore]
public int? SscId { get; set; }
}

public class DensityCode : IEquatable<DensityCode>
Expand Down Expand Up @@ -1527,4 +1530,7 @@ public class SupportedDensity
public string Organization { get; set; }
public string Name { get; set; }
public string Description { get; set; }

[JsonIgnore]
public int? SscId { get; set; }
}

0 comments on commit 459cc61

Please sign in to comment.