I should actually be working
This commit is contained in:
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user