btcpayserver/BTCPayServer.Client/Models/StoreData.cs

21 lines
417 B
C#
Raw Normal View History

2020-03-24 16:18:43 +01:00
namespace BTCPayServer.Client.Models
{
2020-04-30 16:44:27 +02:00
public class StoreData : StoreBaseData
2020-03-24 16:18:43 +01:00
{
/// <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; }
}
2020-03-24 16:18:43 +01:00
}