feat: add UserManagementService feat: add CopmanyDriver relation and DriverManagementService chore: pupulate database seeding class fix: add review filtering by CompanyId
9 lines
242 B
C#
9 lines
242 B
C#
namespace Server.Configurations;
|
|
|
|
public class SmtpCredentials
|
|
{
|
|
public string Host { get; set; } = null!;
|
|
public int Port { get; set; }
|
|
public string User { get; set; } = null!;
|
|
public string Password { get; set; } = null!;
|
|
} |