mirror of
https://github.com/moonlight-stream/moonlight-ios.git
synced 2025-07-28 15:13:05 +00:00
22 lines
363 B
Objective-C
22 lines
363 B
Objective-C
//
|
|
// Host.m
|
|
// Moonlight
|
|
//
|
|
// Created by Diego Waxemberg on 7/10/15.
|
|
// Copyright © 2015 Limelight Stream. All rights reserved.
|
|
//
|
|
|
|
#import "Host.h"
|
|
|
|
@implementation Host
|
|
|
|
@dynamic pairState;
|
|
@synthesize online;
|
|
@synthesize activeAddress;
|
|
|
|
- (NSComparisonResult)compareName:(Host *)other {
|
|
return [self.name caseInsensitiveCompare:other.name];
|
|
}
|
|
|
|
@end
|