ZenithInfo/Models/DamageStats.cs
cswimr a126d6415b
fix: fix a bunch of syntax / logic errors
my intellisense and linter wasn't working until the previous commit, where I added the solution file. now it does, and holy shit was everything broken 😭
2024-12-31 12:20:52 -05:00

19 lines
601 B
C#

namespace ZenithInfo.Models
{
public class DamageStats(
double averageDps,
double shieldDps,
double hullDps,
double averageAlpha,
double shieldAlpha,
double hullAlpha
)
{
public double AverageDps { get; set; } = averageDps;
public double ShieldDps { get; set; } = shieldDps;
public double HullDps { get; set; } = hullDps;
public double AverageAlpha { get; set; } = averageAlpha;
public double ShieldAlpha { get; set; } = shieldAlpha;
public double HullAlpha { get; set; } = hullAlpha;
}
}