Table of Contents

Class ABTGoogleMyMaps<TKey, TValue>

Namespace
SunamoGoogleMyMaps.Data
Assembly
SunamoGoogleMyMaps.dll

Generic base class for Google My Maps data with two values

public class ABTGoogleMyMaps<TKey, TValue>

Type Parameters

TKey

The type of the first value

TValue

The type of the second value

Inheritance
ABTGoogleMyMaps<TKey, TValue>
Derived
Inherited Members
Extension Methods

Constructors

ABTGoogleMyMaps(TKey, TValue)

Generic base class for Google My Maps data with two values

public ABTGoogleMyMaps(TKey key, TValue value)

Parameters

key TKey
value TValue

Properties

Key

First value (typically used as key or name)

public TKey Key { get; set; }

Property Value

TKey

Value

Second value (typically used as value or address)

public TValue Value { get; set; }

Property Value

TValue