mirror of
https://github.com/sp-tarkov/installer.git
synced 2025-02-13 06:30:45 -05:00
Updated the existing C# code into a more modern, imperative and top-level statements style. This involves shortening the code by removing unnecessary parts like additional brackets and explicit namespace declarations. It's done to improve clarity and readability.
7 lines
140 B
C#
7 lines
140 B
C#
namespace SPTInstaller.Models;
|
|
|
|
public class DownloadMirror
|
|
{
|
|
public string Link { get; set; }
|
|
public string Hash { get; set; }
|
|
} |