18 lines
532 B
C#
18 lines
532 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Text;
|
|
|
|
namespace IRaCIS.Core.Domain.Models
|
|
{
|
|
[Table("ImageLabel")]
|
|
public class ImageLabel : Entity
|
|
{
|
|
public string TpCode { get; set; } = string.Empty;
|
|
public Guid StudyId { get; set; } = Guid.Empty;
|
|
public Guid SeriesId { get; set; } = Guid.Empty;
|
|
public Guid InstanceId { get; set; } = Guid.Empty;
|
|
public string LabelValue { get; set; } = string.Empty;
|
|
}
|
|
}
|