init
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
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
|
||||
};
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user