11 lines
362 B
C#
11 lines
362 B
C#
using adas_core.Domain.Models.MongoModels;
|
|
|
|
namespace adas_core.Domain.Models.DTO;
|
|
|
|
public class UpdateUserWithAuthDto
|
|
{
|
|
public User User { get; set; } = new();
|
|
public List<Authorization> Authorizations { get; set; } = [];
|
|
public List<Authorization> NewAuthorizations { get; set; } = [];
|
|
public List<string> AuthsToDelete { get; set; } = [];
|
|
} |