Files
btcpayserver/BTCPayServer/Models/StoreViewModels/CreateStoreViewModel.cs
2020-06-28 21:44:35 -05:00

20 lines
378 B
C#

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