24 lines
378 B
C#
24 lines
378 B
C#
using Entities.Contracts;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Entities.DTO
|
|
{
|
|
|
|
|
|
public class AssignmentClassDto
|
|
{
|
|
public AssignmentDto Assignment { get; set; }
|
|
public Class ClassId { get; set; }
|
|
public DateTime AssignedAt { get; set; }
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|