btcpayserver/BTCPayServer/Models/StoreViewModels/CreateStoreViewModel.cs
2017-10-27 17:53:04 +09:00

20 lines
381 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;
}
}
}