mirror of
https://github.com/zhigang1992/FunctionalReactivePixels.git
synced 2026-05-27 07:32:23 +08:00
18 lines
379 B
Objective-C
18 lines
379 B
Objective-C
//
|
|
// FRPLoginViewModel.h
|
|
// FRP
|
|
//
|
|
// Created by Ash Furrow on 10/22/2013.
|
|
// Copyright (c) 2013 Ash Furrow. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface FRPLoginViewModel : NSObject
|
|
|
|
@property (nonatomic, readonly) RACCommand *loginCommand;
|
|
@property (nonatomic, strong) NSString *username;
|
|
@property (nonatomic, strong) NSString *password;
|
|
|
|
@end
|