6 lines
137 B
C#
6 lines
137 B
C#
|
|
namespace TimetableDesigner.Backend.Services.Authentication.DTO.Events;
|
|||
|
|
|
|||
|
|
public record RegisterEvent(
|
|||
|
|
long Id,
|
|||
|
|
string Email
|
|||
|
|
);
|