namespace AspClassic.Parser;
///
/// An external checksum for a file.
///
public sealed class ExternalChecksum
{
private readonly string _Filename;
private readonly string _Guid;
private readonly string _Checksum;
///
/// The filename that the checksum is for.
///
public string Filename => _Filename;
///
/// The guid of the file.
///
public string Guid => _Guid;
///
/// The checksum for the file.
///
public string Checksum => _Checksum;
///
/// Constructs a new external checksum.
///
/// The filename that the checksum is for.
/// The guid of the file.
/// The checksum for the file.
public ExternalChecksum(string filename, string guid, string checksum)
{
_Filename = filename;
_Guid = guid;
_Checksum = checksum;
}
}