btcpayserver/BTCPayServer.Data/Data/APIKeyData.cs

26 lines
456 B
C#
Raw Normal View History

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;
}
2018-07-19 12:31:17 +02:00
public StoreData StoreData { get; set; }
}
}