12 lines
262 B
C#
12 lines
262 B
C#
namespace BMA.EHR.Application.Responses.Organizations;
|
|
|
|
public class GetLastRevisionDto
|
|
{
|
|
|
|
public string Message { get; set; } = string.Empty;
|
|
|
|
public int Status { get; set; } = -1;
|
|
|
|
public Guid Result { get; set; } = new();
|
|
|
|
}
|