2024-06-25 11:22:46 +07:00
|
|
|
|
namespace BMA.EHR.Application.Responses.Organizations
|
|
|
|
|
|
{
|
|
|
|
|
|
public class GetActiveRootDto
|
|
|
|
|
|
{
|
|
|
|
|
|
public Guid Id { get; set; }
|
|
|
|
|
|
public DateTime CreatedAt { get; set; }
|
|
|
|
|
|
public Guid CreatedUserId { get; set; }
|
|
|
|
|
|
public DateTime LastUpdatedAt { get; set; }
|
|
|
|
|
|
public Guid LastUpdateUserId { get; set; }
|
|
|
|
|
|
public string CreatedFullName { get; set; } = string.Empty;
|
|
|
|
|
|
public string LastUpdateFullName { get; set; } = string.Empty;
|
|
|
|
|
|
public string OrgRootName { get; set; } = string.Empty;
|
2025-01-05 21:57:27 +07:00
|
|
|
|
public string OrgRevisionId { get; set; } = string.Empty;
|
2024-06-25 11:22:46 +07:00
|
|
|
|
}
|
|
|
|
|
|
}
|