mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 06:35:13 +01:00
* Greenfield: Store Users * fixups Co-authored-by: nicolas.dorier <nicolas.dorier@gmail.com>
20 lines
421 B
C#
20 lines
421 B
C#
namespace BTCPayServer.Client.Models
|
|
{
|
|
public class StoreData : StoreBaseData
|
|
{
|
|
/// <summary>
|
|
/// the id of the store
|
|
/// </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; }
|
|
}
|
|
}
|