mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-01 17:07:10 +01:00
22 lines
512 B
C#
22 lines
512 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.ComponentModel.DataAnnotations;
|
|||
|
using System.Linq;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace BTCPayServer.Models.AppViewModels
|
|||
|
{
|
|||
|
public class UpdatePointOfSaleViewModel
|
|||
|
{
|
|||
|
[Required]
|
|||
|
[MaxLength(30)]
|
|||
|
public string Title { get; set; }
|
|||
|
[Required]
|
|||
|
[MaxLength(5)]
|
|||
|
public string Currency { get; set; }
|
|||
|
[Required]
|
|||
|
[MaxLength(5000)]
|
|||
|
public string Template { get; set; }
|
|||
|
}
|
|||
|
}
|