fix: read stat counts from db as long (oopsie)

This commit is contained in:
Iris System 2023-09-04 10:13:33 +12:00
parent 4e8141007f
commit 95b027d432

View file

@ -8,10 +8,10 @@ public partial class ModelRepository
public class Counts
{
public int SystemCount { get; }
public int MemberCount { get; }
public int GroupCount { get; }
public int SwitchCount { get; }
public int MessageCount { get; }
public long SystemCount { get; }
public long MemberCount { get; }
public long GroupCount { get; }
public long SwitchCount { get; }
public long MessageCount { get; }
}
}