用于生成 Office 文件的 .NET 组件。
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.

26 lines
676 B

8 years ago
using System;
using System.Collections.Generic;
using System.Text;
using System.Xml.Serialization;
namespace NPOI.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";
}
}
}
}