17 lines
339 B
C#
17 lines
339 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Data.DAO
|
|
{
|
|
public class Visit
|
|
{
|
|
public int VisitId { get; set; }
|
|
public string VisitName { get; set; }
|
|
|
|
public virtual ICollection<Attendance> Attendances { get; set; }
|
|
}
|
|
}
|