init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
|
@ -0,0 +1,17 @@
|
|||
using System.ComponentModel.DataAnnotations;
|
||||
using Kreta.Ellenorzo.Domain.VN.Orarend;
|
||||
|
||||
namespace Kreta.Ellenorzo.Dto.VN.Orarend
|
||||
{
|
||||
public class OrarendElemGetRequestDto
|
||||
{
|
||||
/// <summary>
|
||||
/// Órarendi elem uid-ja (Id, OraTipusa, OraDatuma UTC ISO 8601)
|
||||
/// </summary>
|
||||
[Required]
|
||||
public string OrarendElemUid { get; set; }
|
||||
|
||||
public static implicit operator OrarendElemGetRequest(OrarendElemGetRequestDto dto)
|
||||
=> dto == null ? new OrarendElemGetRequestDto() : new OrarendElemGetRequest(dto.OrarendElemUid);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue