namespace MsbuildAnalyzer.Models;
///
/// Represents a NuGet package reference.
///
public record PackageReference
{
///
/// The package name.
///
public string Include { get; init; } = string.Empty;
///
/// The package version.
///
public string? Version { get; init; }
}