Closed AndrewToaster closed 3 years ago
From my review I think that the init-only properties should be replaced with read-only or read-write properties
Specifically:
public string Name { get; init; }
As there is no constructor i think this property could become
public string Name { get; set; }
public Mod Mod { get; init; }
Due to the constructor and the 'EventArgs' suffix I think this could be a read-only property
public Mod Mod { get; }
Thank you for the feedback! I will get a developer on it right away!
If you want, please contribute and i will put your updated code into a new branch for further testing
From my review I think that the init-only properties should be replaced with read-only or read-write properties
Specifically:
Mod.cs
As there is no constructor i think this property could become
ModDownloadEventArgs.cs
Due to the constructor and the 'EventArgs' suffix I think this could be a read-only property