stalwart-simplelogin-middle.../StalwartSimpleLoginMiddleware/Models/ApiKeyInput.cs
2025-05-10 05:25:22 -04:00

8 lines
No EOL
219 B
C#

namespace StalwartSimpleLoginMiddleware.Models;
public class ApiKeyInput
{
public string OwnerEmail { get; set; }
public bool IsAdmin { get; set; }
public ICollection<MemberInput> Members { get; set; }
}