Inheritance: DefaultCapability, IIconContainer, IDescriptionContainer
Ejemplo n.º 1
0
 /// <inheritdoc/>
 protected bool Equals(IconCapability other)
 {
     if (other == null)
     {
         return(false);
     }
     return(base.Equals(other) && Descriptions.UnsequencedEquals(other.Descriptions) && Icons.UnsequencedEquals(other.Icons));
 }
Ejemplo n.º 2
0
 /// <inheritdoc/>
 protected IconCapabilityModel(IconCapability capability, bool used) : base(capability, used)
 {
     _iconCapability = capability;
 }
Ejemplo n.º 3
0
 /// <inheritdoc/>
 protected bool Equals(IconCapability other)
 {
     if (other == null) return false;
     return base.Equals(other) && Descriptions.SequencedEquals(other.Descriptions) && Icons.SequencedEquals(other.Icons);
 }