snippeteer/lib/snippets/copyright/copyright_options.ts
2020-05-07 18:40:35 +02:00

16 lines
411 B
TypeScript

/*
* Copyright (C) SapphireCode - All Rights Reserved
* This file is part of Snippeteer which is released under BSD-3-Clause.
* See file 'LICENSE' for full license details.
* Created by Timo Hocker <timo@scode.ovh>, May 2020
*/
export class CopyrightOptions {
public has_license = false;
public license = '';
public author = '';
public company = '';
public email = '';
public software = '';
}