mirror of
https://github.com/drewmccormack/ensembles.git
synced 2026-02-27 18:24:06 +01:00
19 lines
371 B
Objective-C
19 lines
371 B
Objective-C
//
|
|
// IDMMediaFile.h
|
|
// Idiomatic
|
|
//
|
|
// Created by Drew McCormack on 21/02/14.
|
|
// Copyright (c) 2014 The Mental Faculty B.V. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <CoreData/CoreData.h>
|
|
|
|
|
|
@interface IDMMediaFile : NSManagedObject
|
|
|
|
@property (nonatomic, strong) NSData *data;
|
|
@property (nonatomic, strong) NSString *uniqueIdentifier;
|
|
|
|
@end
|