18 lines
336 B
C#
18 lines
336 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
|
|
|
|
namespace MetaAssets;
|
|
|
|
|
|
// HANDOVER: 메타 스키마를 제네릭 기반으로 관리해 주는 클래스 이다.
|
|
// 본 로직들은 ServerBase 모듈로 이관 시켜야 한다.
|
|
|
|
|
|
public class ContentTableBase<T>
|
|
{
|
|
public virtual void merge(T table) { }
|
|
}
|