Skip to content

Commit

Permalink
Added Type to AssetInput model
Browse files Browse the repository at this point in the history
  • Loading branch information
PatrickRitchie committed Dec 10, 2023
1 parent a6795b8 commit a874c37
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions libraries/MTConnect.NET-Common/Input/AssetInput.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ public class AssetInput : IAssetInput
/// </summary>
public string AssetId { get; set; }

/// <summary>
/// The Type of the Asset (ex. CuttingTool, File, RawMaterial, etc.)
/// </summary>
public string Type { get; set; }

/// <summary>
/// The Asset to add
/// </summary>
Expand Down
5 changes: 5 additions & 0 deletions libraries/MTConnect.NET-Common/Input/IAssetInput.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ public interface IAssetInput
/// </summary>
string AssetId { get; }

/// <summary>
/// The Type of the Asset (ex. CuttingTool, File, RawMaterial, etc.)
/// </summary>
string Type { get; }

/// <summary>
/// The Asset to add
/// </summary>
Expand Down

0 comments on commit a874c37

Please sign in to comment.