[#20][#80] Elwig: Update member_history and add different types of shares
Test / Run tests (push) Successful in 2m0s

This commit is contained in:
2026-07-01 11:01:15 +02:00
parent 4ebe07f579
commit feee6ad1ec
37 changed files with 858 additions and 264 deletions
+1 -1
View File
@@ -126,7 +126,7 @@ namespace Elwig.ViewModels {
[ObservableProperty]
private string? _businessSharesString;
public int? BusinessShares {
get => int.TryParse(BusinessSharesString, out var bs) ? bs : null;
get => int.TryParse(BusinessSharesString, out var shares) ? shares : null;
set => BusinessSharesString = $"{value}";
}
[ObservableProperty]