mirror of
https://github.com/zhigang1992/FunctionalReactivePixels.git
synced 2026-01-12 22:47:31 +08:00
18 lines
383 B
Objective-C
18 lines
383 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 : RVMViewModel
|
|
|
|
@property (nonatomic, readonly) RACCommand *loginCommand;
|
|
@property (nonatomic, strong) NSString *username;
|
|
@property (nonatomic, strong) NSString *password;
|
|
|
|
@end
|