12345678910 |
- namespace Publicate.Licences {
- public abstract class CreativeCommons : Licence {
- public override string generate_copyright (string holder, string year) {
- return @"Copyright © $year $holder, This work is licensed under a $name License.";
- }
- }
- }
|