summaryrefslogtreecommitdiff
path: root/src/config.vala
blob: a16de0f678711aef869e30ea268059e30e0b364e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
namespace Config
{
	[SingleInstance]
	public class Info: Object
	{
			public string[] authors {get; construct;}
			public string[] artists {get; construct;}
			public string   copyright {get; construct;}
			construct {
				authors = {
					_("Mubashshir <ahm@jadupc.com>"),
					_("Saikat <fas@jadupc.com>"),
				};
				copyright = string.joinv("\n", {
					_("Copyright © 2023 Mubashshir"),
					_("Copyright © 2023 Saikat"),
				});
				artists = {
					_("Maliha <maliha.0250@gmail.com>"),
				};
			}
	}
}