//
// OpenCover - S Wilde
//
// This source code is released under the MIT License; see the accompanying license file.
//
namespace OpenCover.Framework.Model
{
///
/// A point may have a document reference
///
public interface IDocumentReference
{
///
/// The document url
///
string Document { get; set; }
///
/// The document id after lookup
///
uint FileId { get; set; }
}
}