mirror of
https://github.com/zhigang1992/GitHawk.git
synced 2026-06-05 06:49:56 +08:00
* Move SwipeCellKit & SlackTextViewController to Local Pods directory * Move playgrounds to own folder * Create podspec for MMMarkdown and move to Local Pods
18 lines
344 B
Objective-C
Executable File
18 lines
344 B
Objective-C
Executable File
//
|
|
// Message.h
|
|
// Messenger
|
|
//
|
|
// Created by Ignacio Romero Z. on 1/16/15.
|
|
// Copyright (c) 2015 Slack Technologies, Inc. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface Message : NSObject
|
|
|
|
@property (nonatomic, strong) NSString *username;
|
|
@property (nonatomic, strong) NSString *text;
|
|
|
|
@end
|