btcpayserver/BTCPayServer/Models/StoreViewModels/CreateStoreViewModel.cs

20 lines
333 B
C#
Raw Normal View History

2017-09-13 16:50:36 +02:00
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;
}
}
}