using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml.Linq;
using System.IO.Packaging;
namespace Novacode
{
///
/// Represents an Image embedded in a document.
///
public class Image
{
///
/// A unique id which identifies this Image.
///
private string id;
///
/// Returns the id of this Image.
///
public string Id
{
get {return id;}
}
internal Image(DocX document, PackageRelationship pr)
{
id = pr.Id;
}
}
}