Topup functions

This commit is contained in:
2023-07-04 14:11:53 +01:00
parent 013008dcf9
commit 00c918b1f6
17 changed files with 6519 additions and 12 deletions

View File

@ -38,4 +38,11 @@ public class User
/// Comma seperated tags
/// </summary>
public string? Tags { get; set; }
/// <summary>
/// Concurrency token
/// </summary>
public uint Version { get; set; }
public List<Payment> Payments { get; init; } = new();
}