mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-17 05:54:26 +01:00
12 lines
333 B
C#
12 lines
333 B
C#
using System.Collections.Generic;
|
|
|
|
namespace BTCPayServer.Plugins.Emails.Views.Shared;
|
|
|
|
public class EmailRulesListViewModel
|
|
{
|
|
public string StoreId { get; set; }
|
|
public string ModifyPermission { get; set; }
|
|
public bool ShowCustomerEmailColumn { get; set; }
|
|
public List<StoreEmailRuleViewModel> Rules { get; set; }
|
|
}
|