8 lines
No EOL
219 B
C#
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; }
|
|
} |