C# Client Library
A C# Client Library for the AnalyzeRe REST API
Loading...
Searching...
No Matches
StaticPortfolio.cs
Go to the documentation of this file.
1using System.Collections.Generic;
2using System.Runtime.Serialization;
4
5// ReSharper disable once CheckNamespace (Type is common enough to be on root namespace)
6namespace AnalyzeRe
7{
10 {
11 #region Public Properties
13 [DataMember(Order = 13)]
14 [NotNull]
15 [NotEmpty]
16 public new HashSet<IReference<ILayer>> layers
17 {
18 get { return base.layers; }
19 set { base.layers = value; }
20 }
21 #endregion Public Properties
22
25 {
26 layers = new HashSet<IReference<ILayer>>();
27 }
28 }
29}
Representation of a portfolio.
Definition Portfolio.cs:12
HashSet< IReference< ILayer > > layers
The layers in this portfolio.
Definition Portfolio.cs:29
Representation of a portfolio.
new HashSet< IReference< ILayer > > layers
The Layers to include in this Portfolio.
StaticPortfolio()
Construct a new Portfolio with an empty layers list.