mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
23 lines
339 B
Objective-C
23 lines
339 B
Objective-C
#import "PGCameraMomentSegment.h"
|
|
|
|
@interface PGCameraMomentSegment ()
|
|
{
|
|
|
|
}
|
|
@end
|
|
|
|
@implementation PGCameraMomentSegment
|
|
|
|
- (instancetype)initWithURL:(NSURL *)url duration:(NSTimeInterval)duration
|
|
{
|
|
self = [super init];
|
|
if (self != nil)
|
|
{
|
|
_fileURL = url;
|
|
_duration = duration;
|
|
}
|
|
return self;
|
|
}
|
|
|
|
@end
|