feat: add PagedResult, Member DTOs, and User DTOs
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
namespace ROLAC.API.DTOs.Members;
|
||||
|
||||
public class MemberDto : MemberListItemDto
|
||||
{
|
||||
public string? Gender { get; set; }
|
||||
public DateOnly? DateOfBirth { get; set; }
|
||||
public DateOnly? BaptismDate { get; set; }
|
||||
public string? BaptismChurch { get; set; }
|
||||
public string? PhoneHome { get; set; }
|
||||
public string? Address { get; set; }
|
||||
public string? City { get; set; }
|
||||
public string? State { get; set; }
|
||||
public string? ZipCode { get; set; }
|
||||
public string Country { get; set; } = "USA";
|
||||
public string? PhotoBlobPath { get; set; }
|
||||
public string LanguagePreference { get; set; } = "en";
|
||||
public string? Notes { get; set; }
|
||||
public int? FamilyUnitId { get; set; }
|
||||
public DateTimeOffset CreatedAt { get; set; }
|
||||
public DateTimeOffset UpdatedAt { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user