mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 14:40:36 +01:00
20 lines
545 B
C#
20 lines
545 B
C#
using System;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace BTCPayServer.Client.Models
|
|
{
|
|
public class AppDataBase
|
|
{
|
|
public string Id { get; set; }
|
|
public string AppType { get; set; }
|
|
public string Name { get; set; }
|
|
public string StoreId { get; set; }
|
|
[JsonConverter(typeof(NBitcoin.JsonConverters.DateTimeToUnixTimeConverter))]
|
|
public DateTimeOffset Created { get; set; }
|
|
}
|
|
|
|
public class PointOfSaleAppData : AppDataBase
|
|
{
|
|
// We can add POS specific things here later
|
|
}
|
|
}
|