//
//  ReadFile.cs
//
//  Copyright (c) František Boháček. All rights reserved.
//  Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System.Diagnostics.CodeAnalysis;
namespace NosSmooth.Data.NOSFiles.Files;
/// 
/// A file that has been already processed by a reader.
/// 
/// A path to the file.
/// The content read.
/// The type of the content read.
[SuppressMessage("StyleCop.CSharp.NamingRules", "SA1313:Parameter names should begin with lower-case letter", Justification = "Upper case is standard.")]
public record struct ReadFile
(
    string Path,
    TContent Content
);