init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
|
@ -0,0 +1,27 @@
|
|||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using Kreta.Naplo.Domain.V3.Orarend;
|
||||
using Kreta.Naplo.Dto.V3.Documentation;
|
||||
|
||||
namespace Kreta.Naplo.Dto.V3.Orarend
|
||||
{
|
||||
public class TanuloForOraNaplozasListRequestDto
|
||||
{
|
||||
[Required, Description(DescriptionLookUp.TanuloId)]
|
||||
public int Id { get; set; }
|
||||
|
||||
[Required, Description(DescriptionLookUp.Mulasztas)]
|
||||
public MulasztasForOraNaplozasRequestDto Mulasztas { get; set; }
|
||||
|
||||
[Description(DescriptionLookUp.FeljegyzesTipusLista)]
|
||||
public List<int> FeljegyzesTipusLista { get; set; } = new List<int>();
|
||||
|
||||
public static implicit operator TanuloForOraNaplozasListRequest(TanuloForOraNaplozasListRequestDto model) => new TanuloForOraNaplozasListRequest
|
||||
{
|
||||
Id = model.Id,
|
||||
Mulasztas = model.Mulasztas,
|
||||
FeljegyzesTipusLista = model.FeljegyzesTipusLista
|
||||
};
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue