mirror of
https://github.com/GCMatters/hermes.git
synced 2026-02-04 13:40:13 +01:00
26 lines
648 B
C#
26 lines
648 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace WebApp.DTOs
|
|
{
|
|
public record class UserSummaryDto
|
|
(
|
|
[Required] int UserId,
|
|
[Required] string Email,
|
|
[Required] string FirstName,
|
|
[Required] string LastName,
|
|
[Required] DateTime CreatedAt,
|
|
[Required] bool isOrganisation
|
|
);
|
|
|
|
public record class UserSummaryWithOrgIdDto
|
|
(
|
|
[Required] int UserId,
|
|
[Required] string Email,
|
|
[Required] string FirstName,
|
|
[Required] string LastName,
|
|
[Required] DateTime CreatedAt,
|
|
[Required] bool isOrganisation,
|
|
int? OrganisationId
|
|
);
|
|
}
|