mirror of
https://github.com/samsonjs/samhuri.net-ios.git
synced 2026-03-25 09:25:47 +00:00
19 lines
490 B
Objective-C
19 lines
490 B
Objective-C
//
|
|
// BlogStatus.h
|
|
// Blog
|
|
//
|
|
// Created by Sami Samhuri on 2014-11-23.
|
|
// Copyright (c) 2014 Guru Logic Inc. All rights reserved.
|
|
//
|
|
|
|
@import Foundation;
|
|
#import <Mantle/Mantle.h>
|
|
|
|
@interface BlogStatus : MTLModel <MTLJSONSerializing>
|
|
|
|
@property (nonatomic, readonly, strong) NSDate *date;
|
|
@property (nonatomic, readonly, strong) NSString *localVersion;
|
|
@property (nonatomic, readonly, strong) NSString *remoteVersion;
|
|
@property (nonatomic, readonly, getter=isDirty) BOOL dirty;
|
|
|
|
@end
|