mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 09:54:30 +01:00
26 lines
456 B
C#
26 lines
456 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BTCPayServer.Data
|
|
{
|
|
public class APIKeyData
|
|
{
|
|
[MaxLength(50)]
|
|
public string Id
|
|
{
|
|
get; set;
|
|
}
|
|
|
|
[MaxLength(50)]
|
|
public string StoreId
|
|
{
|
|
get; set;
|
|
}
|
|
|
|
public StoreData StoreData { get; set; }
|
|
}
|
|
}
|