20 lines
490 B
C#
20 lines
490 B
C#
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; }
|
|
}
|
|
}
|