7 lines
152 B
C#
7 lines
152 B
C#
|
|
namespace TimetableDesigner.Backend.Services.Authentication.Core.Commands.Register;
|
|||
|
|
|
|||
|
|
public record RegisterResult
|
|||
|
|
(
|
|||
|
|
long Id,
|
|||
|
|
string Email
|
|||
|
|
);
|