init
This commit is contained in:
+20
@@ -0,0 +1,20 @@
|
||||
using System;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using Kreta.Naplo.Domain.V3.Utility.ValidationAttributes;
|
||||
|
||||
namespace Kreta.Naplo.Domain.V3.OsztalyCsoport
|
||||
{
|
||||
public class OsztalyCsoportErtekelesekRequest
|
||||
{
|
||||
[Required]
|
||||
public int TantargyId { get; set; }
|
||||
|
||||
[Required]
|
||||
public int OsztalyCsoportId { get; set; }
|
||||
|
||||
[Required, ShortDateTime]
|
||||
public DateTime Datum { get; set; }
|
||||
|
||||
public int? TanuloId { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user