presence/domain/Entity/GroupSubjectEntity.cs

16 lines
338 B
C#
Raw Permalink Normal View History

2024-12-04 12:21:15 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace domain.Entity
{
public class GroupSubjectEntity
{
public int Id { get; set; }
public string Name { get; set; }
public IEnumerable<SubjectEntity> Subjects { get; set; }
}
}