mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 14:22:40 +01:00
23 lines
406 B
C#
23 lines
406 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;
|
|
}
|
|
}
|
|
}
|