Code styling update

master
Jan Beníček 2023-01-28 19:53:49 +01:00
parent 34b98123ae
commit bf70763bf3
1 changed files with 4 additions and 6 deletions

View File

@ -10,15 +10,13 @@ namespace Lib_MCPlayerStats
{ {
public string? id; public string? id;
public string? name; public string? name;
public Cape? properties; public List<Cape>? Properties;
} }
internal class Cape public class Cape
{ {
public string? name; public string? name;
public string? value;
public string? signature; public dynamic? value;
} }
} }