mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2024-12-23 16:20:53 +01:00
26 lines
572 B
C
Executable File
26 lines
572 B
C
Executable File
//
|
|
// RSConstants.h
|
|
// RSCore
|
|
//
|
|
// Created by Brent Simmons on 3/25/15.
|
|
// Copyright (c) 2015 Ranchero Software, LLC. All rights reserved.
|
|
//
|
|
|
|
@import Foundation;
|
|
|
|
typedef NS_ENUM(NSUInteger, RSPosition) {
|
|
RSPositionFirst,
|
|
RSPositionMiddle,
|
|
RSPositionLast,
|
|
RSPositionOnly
|
|
};
|
|
|
|
|
|
extern NSString *RSUniqueIDKey; //@"uniqueID"
|
|
extern NSString *RSImageKey; //@"image"
|
|
extern NSString *RSChildrenKey; //@"children"
|
|
extern NSString *RSNameKey; //@"name"
|
|
extern NSString *RSTypeKey; //@"type"
|
|
extern NSString *RSFolderKey; //@"folder"
|
|
extern NSString *RSURLKey; //@"url"
|