18 lines
469 B
C#
18 lines
469 B
C#
using System.ComponentModel;
|
|
using Kreta.Naplo.Domain.V3.Ora;
|
|
using Kreta.Naplo.Dto.V3.Documentation;
|
|
|
|
namespace Kreta.Naplo.Dto.V3.Ora
|
|
{
|
|
public class OraFeljegyzesRequestDto
|
|
{
|
|
[Description(DescriptionLookUp.TanitasiOraId)]
|
|
public int TanoraId { get; set; }
|
|
|
|
public static implicit operator OraFeljegyzesRequest(OraFeljegyzesRequestDto dto) => new OraFeljegyzesRequest
|
|
{
|
|
TanoraId = dto.TanoraId
|
|
};
|
|
}
|
|
}
|