You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Text;
|
|
|
|
using System.Xml.Serialization;
|
|
|
|
|
|
|
|
namespace Npoi.Core.OpenXmlFormats
|
|
|
|
{
|
|
|
|
[XmlType(Namespace = "http://schemas.openxmlformats.org/officeDocument/2006/relationships")]
|
|
|
|
[XmlRoot(Namespace = "http://schemas.openxmlformats.org/officeDocument/2006/relationships", IsNullable = true)]
|
|
|
|
public class ST_RelationshipId
|
|
|
|
{
|
|
|
|
//string _id;
|
|
|
|
public ST_RelationshipId()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
public static string NamespaceURI
|
|
|
|
{
|
|
|
|
get{
|
|
|
|
return "http://schemas.openxmlformats.org/officeDocument/2006/relationships";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|