presence/domain/Entity/SubjectEntity.cs

15 lines
268 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 SubjectEntity
{
public int Id { get; set; }
public string Name { get; set; }
}
}