btcpayserver/BTCPayServer/Models/StoreViewModels/CreateStoreViewModel.cs

16 lines
281 B
C#

using System.ComponentModel.DataAnnotations;
namespace BTCPayServer.Models.StoreViewModels
{
public class CreateStoreViewModel
{
[Required]
[MaxLength(50)]
[MinLength(1)]
public string Name
{
get; set;
}
}
}