presence/domain/Entity/GroupSubjectEntity.cs
2024-12-04 15:21:15 +03:00

16 lines
338 B
C#

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; }
}
}