PHP Classes

File: backend/dotnet/DTOs/Users/UserResponse.cs

Recommend this page to a friend!
  Packages of Everton C B Junior   Igreja Aberta   backend/dotnet/DTOs/Users/UserResponse.cs   Download  
File: backend/dotnet/DTOs/Users/UserResponse.cs
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Igreja Aberta
Church activity management application
Author: By
Last change:
Date: 12 days ago
Size: 482 bytes
 

Contents

Class file image Download
namespace Jdb.Api.DTOs.Users { public class UserResponse { public long Id { get; set; } public long CongregationId { get; set; } public string Name { get; set; } = string.Empty; public string Email { get; set; } = string.Empty; public string Status { get; set; } = string.Empty; public DateTime? LastLoginAt { get; set; } public DateTime CreatedAt { get; set; } public DateTime UpdatedAt { get; set; } } }