13 lines
289 B
C#
13 lines
289 B
C#
using System;
|
|
using System.IO;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Exercises_C_Sharp
|
|
{
|
|
class ExerciseGroup
|
|
{
|
|
public string Name = string.Empty;
|
|
public List<ExerciseElement> ElementList = new List<ExerciseElement>();
|
|
public int VideoID = -1;
|
|
}
|
|
} |