mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-09-16 17:00:58 +00:00
17 lines
425 B
Objective-C
17 lines
425 B
Objective-C
//
|
|
// VideoModel.h
|
|
// Sample
|
|
//
|
|
// Created by Erekle on 5/14/16.
|
|
// Copyright © 2016 Facebook. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface VideoModel : NSObject
|
|
@property (nonatomic, strong, readonly) NSString* title;
|
|
@property (nonatomic, strong, readonly) NSURL *url;
|
|
@property (nonatomic, strong, readonly) NSString *userName;
|
|
@property (nonatomic, strong, readonly) NSURL *avatarUrl;
|
|
@end
|