mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 14:22:40 +01:00
21 lines
602 B
C#
21 lines
602 B
C#
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace BTCPayServer.Models.StoreViewModels
|
|
{
|
|
public class StoreUsersViewModel
|
|
{
|
|
public class StoreUserViewModel
|
|
{
|
|
public string Email { get; set; }
|
|
public string Role { get; set; }
|
|
public string Id { get; set; }
|
|
}
|
|
[Required]
|
|
[EmailAddress]
|
|
public string Email { get; set; }
|
|
public string StoreId { get; set; }
|
|
public string Role { get; set; }
|
|
public List<StoreUserViewModel> Users { get; set; }
|
|
}
|
|
}
|