mirror of
https://github.com/zhigang1992/GitHawk.git
synced 2026-06-06 06:29:32 +08:00
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
|