using adas_core.Domain.Models.MongoModels;
namespace adas_core.Domain.Models.DTO;
///
/// Represents a data transfer object used to create a user along with authentication details.
///
public class CreateUserWithAuthDto
{
public User User { get; set; } = new();
public List Authorizations { get; set; } = [];
}