NanoXLSX.Reader 3.2.1
Loading...
Searching...
No Matches
Relationship.cs
1/*
2 * NanoXLSX is a small .NET library to generate and read XLSX (Microsoft Excel 2007 or newer) files in an easy and native way
3 * Copyright Raphael Stoeckli © 2026
4 * This library is licensed under the MIT License.
5 * You find a copy of the license in project folder or on: http://opensource.org/licenses/MIT
6 */
7
8using System;
9using System.Diagnostics.CodeAnalysis;
10
12{
13 // TODO V4 (next major version): remove
17 [Obsolete("Will be removed with next major version")]
18 public class Relationship
19 {
23 [ExcludeFromCodeCoverage]
24 public string RID { get; set; }
28 [ExcludeFromCodeCoverage]
29 public string Type { get; set; }
33 [ExcludeFromCodeCoverage]
34 public string Target { get; set; }
35 }
36}
Class to represent a workbook relation (do not use).
string Type
Type of the relation.
string Target
Target of the relation.
string RID
ID of the relation.