Files
FunctionalReactivePixels/FRP/FRPLoginViewModel.h
2013-10-25 19:26:13 -04:00

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