version 0.1.0

Added COPYING and README.md
Implemented Serilog
This commit is contained in:
Jeddunk 2021-01-14 19:38:31 +01:00
parent 32c48b01b9
commit a34ed8881d
11 changed files with 785 additions and 28 deletions

View file

@ -74,12 +74,12 @@ namespace GoldbergGUI.Core.Models
public string Value { get; }
public static AppType Game => new AppType("game");
public static AppType DLC => new AppType("dlc");
public static AppType Music => new AppType("music");
public static AppType Demo => new AppType("demo");
public static AppType Ad => new AppType("advertising");
public static AppType Mod => new AppType("mod");
public static AppType Video => new AppType("video");
public static AppType Game { get; } = new AppType("game");
public static AppType DLC { get; } = new AppType("dlc");
public static AppType Music { get; } = new AppType("music");
public static AppType Demo { get; } = new AppType("demo");
public static AppType Ad { get; } = new AppType("advertising");
public static AppType Mod { get; } = new AppType("mod");
public static AppType Video { get; } = new AppType("video");
}
}