12345678910 |
- namespace InABox.Core
- {
- [UserTracking("Core Functionality")]
- public class AddressLookup : Entity, IPersistent, IRemotable, ILicense<CoreLicense>
- {
- public string Address { get; set; }
- public double Latitude { get; set; }
- public double Longitude { get; set; }
- }
- }
|