Skip to content

Commit

Permalink
Make Artifact.Repository setter public.
Browse files Browse the repository at this point in the history
  • Loading branch information
jpobst committed Oct 19, 2023
1 parent 95078bc commit 8798344
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MavenNet/Models/Artifact.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public Artifact(string id, string groupId, params string[] versions)
public string Id { get; private set; }
public IList<string> Versions { get; private set; }

public MavenRepository Repository { get; internal set; }
public MavenRepository Repository { get; set; }

public async Task<Models.Metadata> GetMetadata ()
{
Expand Down

0 comments on commit 8798344

Please sign in to comment.