Greenfield: Store Users (#3425)

* Greenfield: Store Users

* fixups

Co-authored-by: nicolas.dorier <nicolas.dorier@gmail.com>
This commit is contained in:
Andrew Camilleri
2022-02-10 06:51:10 +01:00
committed by GitHub
parent 0afc2cd2cb
commit da9a6b835a
8 changed files with 412 additions and 11 deletions

View File

@@ -7,4 +7,14 @@ namespace BTCPayServer.Client.Models
/// </summary>
public string Id { get; set; }
}
public class StoreUserData
{
/// <summary>
/// the id of the user
/// </summary>
public string UserId { get; set; }
public string Role { get; set; }
}
}