Class NameLongIdPair
Implements
System.IEquatable<NameLongIdPair>
Namespace: MediaBrowser.Model.Dto
Assembly: MediaBrowser.Model.dll
Syntax
public class NameLongIdPair : IEquatable<NameLongIdPair>
Properties
Id
Gets or sets the identifier.
Declaration
public long Id { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Int64 | The identifier. |
Name
Gets or sets the name.
Declaration
public string Name { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String | The name. |
Methods
Equals(NameLongIdPair)
Declaration
public bool Equals(NameLongIdPair other)
Parameters
| Type | Name | Description |
|---|---|---|
| NameLongIdPair | other |
Returns
| Type | Description |
|---|---|
| System.Boolean |
Equals(Object)
Declaration
public override bool Equals(object obj)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Object | obj |
Returns
| Type | Description |
|---|---|
| System.Boolean |
Overrides
System.Object.Equals(System.Object)
GetHashCode()
Declaration
public override int GetHashCode()
Returns
| Type | Description |
|---|---|
| System.Int32 |
Overrides
System.Object.GetHashCode()
Implements
System.IEquatable<T>