mirror of
https://github.com/MAKS-IT-COM/maksit-certs-ui.git
synced 2025-12-31 04:00:03 +01:00
7 lines
173 B
C#
7 lines
173 B
C#
namespace MaksIT.LetsEncryptServer.Dto;
|
|
|
|
public class SettingsDto {
|
|
public required bool Init { get; set; }
|
|
public required List<UserDto> Users { get; set; } = [];
|
|
|
|
} |