9 lines
211 B
C#
9 lines
211 B
C#
|
|
namespace BMA.EHR.Leave.Service.DTOs.LeaveRequest
|
||
|
|
{
|
||
|
|
public class LeaveDocumentDto
|
||
|
|
{
|
||
|
|
public Guid DocId { get; set; } = Guid.Empty;
|
||
|
|
|
||
|
|
public string Path { get; set; } = string.Empty;
|
||
|
|
}
|
||
|
|
}
|