17 lines
370 B
C#
17 lines
370 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace videoGather
|
|||
|
{
|
|||
|
internal class Study
|
|||
|
{
|
|||
|
public string StudyDescr { get; set; }
|
|||
|
public string StudyID { get; set; }
|
|||
|
public string StudyModal { get; set; }
|
|||
|
public List<Series> Series { get; set; }
|
|||
|
}
|
|||
|
}
|