19 lines
392 B
C#
19 lines
392 B
C#
|
using domain.Entity;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Domain.Entity
|
|||
|
{
|
|||
|
public class SubjectEntity
|
|||
|
{
|
|||
|
public int SubjectId { get; set; }
|
|||
|
public string SubjectName { get; set; }
|
|||
|
|
|||
|
public int GroupId { get; set; }
|
|||
|
public GroupEntity Group { get; set; }
|
|||
|
}
|
|||
|
}
|