16 lines
424 B
C#
16 lines
424 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace IRaCIS.Core.Domain.Models
|
|
{
|
|
[Table("TrialInterview")]
|
|
public class TrialInterview : Entity
|
|
{
|
|
public Guid TrialId { get; set; }
|
|
public string Stage { get; set; }
|
|
public string InterViewTime { get; set; }
|
|
public string Description { get; set; }
|
|
public DateTime CreateTime { get; set; }
|
|
}
|
|
}
|