You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
676 B
30 lines
676 B
using Connected.ServiceModel;
|
|
|
|
namespace Connected.Security.Identity;
|
|
|
|
public class UserInsertArgs : Dto
|
|
{
|
|
public string? FirstName { get; init; }
|
|
public string? LastName { get; init; }
|
|
public string? LoginName { get; init; }
|
|
public string? Email { get; init; }
|
|
public string? TimeZone { get; init; }
|
|
public int Language { get; init; }
|
|
}
|
|
|
|
public sealed class UserUpdateArgs : UserInsertArgs
|
|
{
|
|
public int Id { get; init; }
|
|
}
|
|
|
|
public sealed class UserResolveArgs : Dto
|
|
{
|
|
public string? Criteria { get; init; }
|
|
}
|
|
|
|
public sealed class UserPasswordArgs : PrimaryKeyArgs<int>
|
|
{
|
|
public string? ExistingPassword { get; init; }
|
|
public string? NewPassword { get; init; }
|
|
}
|