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
TKeyThe type of the first value
TValueThe 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
keyTKeyvalueTValue
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