mirror of
https://github.com/Caraxi/mare.client.git
synced 2025-12-15 16:54:16 +01:00
I should actually be working
This commit is contained in:
parent
847c4f815a
commit
c0de781421
8 changed files with 519 additions and 352 deletions
21
MareSynchronos/PenumbraMod/Meta.cs
Normal file
21
MareSynchronos/PenumbraMod/Meta.cs
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
using Newtonsoft.Json;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace MareSynchronos.PenumbraMod
|
||||
{
|
||||
[JsonObject(MemberSerialization.OptOut)]
|
||||
internal class Meta
|
||||
{
|
||||
public int FileVersion { get; set; } = 1;
|
||||
public string Name { get; set; } = string.Empty;
|
||||
public string Author { get; set; } = string.Empty;
|
||||
public string Description { get; set; } = string.Empty;
|
||||
public string Version { get; set; } = "0";
|
||||
public string Website { get; set; } = string.Empty;
|
||||
public long ImportDate { get; set; } = DateTime.Now.Ticks;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue