mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-17 05:54:26 +01:00
11 lines
223 B
C#
11 lines
223 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace BTCPayServer.Views.UIStoreMembership;
|
|
|
|
public class CreateOfferingViewModel
|
|
{
|
|
[Required]
|
|
[StringLength(50)]
|
|
public string Name { get; set; } = null!;
|
|
}
|