Files
T-DAS/Epost.BLL/EntityBase.cs
2023-01-13 15:30:20 +08:00

18 lines
286 B
C#

using System;
using System.Collections.Generic;
using System.Data.Entity;
using System.Linq;
using System.Linq.Expressions;
using System.Text;
using System.Threading.Tasks;
namespace Epost.BLL
{
public class EntityBase<T> where T : class, new()
{
}
}