13 lines
275 B
C#
13 lines
275 B
C#
|
|
using AssetDelete.Data;
|
|||
|
|
|
|||
|
|
namespace AssetDelete
|
|||
|
|
{
|
|||
|
|
public static class AssetDeleteFactory
|
|||
|
|
{
|
|||
|
|
public static BaseAssetDelete CreateAssetDelete(EDeleteAssetType deleteAssetType)
|
|||
|
|
{
|
|||
|
|
throw new System.NotImplementedException();
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|