8using System.IO.Packaging;
15 internal sealed class RelationshipInfo
20 public string Id {
get;
private set; }
25 public string Type {
get;
private set; }
30 public string Target {
get;
private set; }
35 public TargetMode TargetMode {
get;
private set; }
40 public string RelationshipPartPath {
get;
private set; }
45 public string SourcePartPath {
get;
private set; }
50 public string ResolvedTargetPath {
get;
private set; }
62 public RelationshipInfo(
string id,
string type,
string target, TargetMode targetMode,
string relationshipPartPath,
string sourcePartPath,
string resolvedTargetPath)
67 TargetMode = targetMode;
68 RelationshipPartPath = relationshipPartPath;
69 SourcePartPath = sourcePartPath;
70 ResolvedTargetPath = resolvedTargetPath;