Swiftgram/submodules/LegacyComponents/Sources/PGCameraMomentSegment.m
2020-02-22 15:38:54 +04: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