Swiftgram/LegacyComponents/PGCameraMomentSegment.m
2017-07-24 20:40:31 +02:00

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