18 lines
319 B
C#
18 lines
319 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace UniversalEditor.ObjectModels.Concertroid
|
|
{
|
|
public class Language
|
|
{
|
|
public class LanguageCollection
|
|
: System.Collections.ObjectModel.Collection<Language>
|
|
{
|
|
}
|
|
|
|
|
|
}
|
|
}
|