11 lines
227 B
C#
11 lines
227 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
[Serializable]
|
|
public class CustomizablesDataBase<Data> where Data : CustomizableDataBase
|
|
{
|
|
public string currentId;
|
|
|
|
public List<Data> customizablesList = new List<Data>();
|
|
}
|