Cleaning up warning

This commit is contained in:
2023-09-05 21:22:30 +02:00
parent ecfd0d1b93
commit e6fd8d4ab5
34 changed files with 119 additions and 183 deletions

View File

@@ -15,13 +15,13 @@ public partial class RootDriveInfo
[Notify] private string? _label;
[Notify] private long _size = 0;
[Notify] private long _size;
[Notify] private long _free = 0;
[Notify] private long _free;
[Notify] private long _used = 0;
[Notify] private long _used;
[Notify] public long UsedPercentage => Size == 0 ? 0 : Used * 100 / Size;
public long UsedPercentage => Size == 0 ? 0 : Used * 100 / Size;
public FullName Path { get; }