Archived
Private
Public Access
1
0

added mails page + reworked button placement

This commit is contained in:
2023-04-22 14:12:20 +02:00
parent a2149d24ec
commit c15df303f0
19 changed files with 560 additions and 50 deletions

View File

@@ -1,7 +1,8 @@
namespace BetterIServ.Backend.Entities;
public struct Credentials {
public string Domain { get; set; }
public string Username { get; set; }
public string Password { get; set; }
public class Credentials {
public string? Domain { get; set; }
public string? Username { get; set; }
public string? Password { get; set; }
public string? Token { get; set; }
}