mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 14:40:36 +01:00
17 lines
377 B
C#
17 lines
377 B
C#
|
using System.Collections.Generic;
|
||
|
|
||
|
namespace BTCPayServer.Models.WalletViewModels;
|
||
|
|
||
|
public class WalletLabelsModel
|
||
|
{
|
||
|
public WalletId WalletId { get; set; }
|
||
|
public IEnumerable<WalletLabelModel> Labels { get; set; }
|
||
|
}
|
||
|
|
||
|
public class WalletLabelModel
|
||
|
{
|
||
|
public string Label { get; set; }
|
||
|
public string Color { get; set; }
|
||
|
public string TextColor { get; set; }
|
||
|
}
|