afterwriting
Version:
Post-processing tools for Fountain screenplays
27 lines (21 loc) • 441 B
JavaScript
define(function(require) {
var Protoplast = require('protoplast');
/**
* @alias LastUsedInfo
*/
var LastUsedInfo = Protoplast.Model.extend({
/**
* @type {string}
*/
script: null,
/**
* @type {Date}
*/
date: null,
/**
* @type {string}
*/
title: null
});
return LastUsedInfo;
});