12 lines
175 B
C#
12 lines
175 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
|
|
namespace ServerBase;
|
|
|
|
public class ContentTableBase<T>
|
|
{
|
|
public virtual void merge(T table) { }
|
|
}
|