WLBeacon.m 435 Bytes
//
//  WLBeaconRegion.m
//  DemoApp
//
//  Created by Sergey Korobyin on 09.06.15.
//  Copyright (c) 2015 YC. All rights reserved.
//

#import "WLBeacon.h"

@implementation WLBeacon

- (instancetype)initWithUUID:(NSString*)uuid identifier:(NSString*)identifier{
    if (self = [super init]) {
        _beaconUUID = [[NSUUID alloc] initWithUUIDString:uuid];
        _beaconIdentifier = identifier;
    }
    
    return self;
}



@end