Files

18 lines
375 B
C#
Raw Permalink Normal View History

2022-09-19 14:24:13 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2023-01-01 23:06:11 +08:00
namespace Yi.Framework.Model.RABC.SeedData
2022-09-19 14:24:13 +08:00
{
public abstract class AbstractSeed<T>
{
protected List<T> Entitys { get; set; } = new List<T>();
public virtual List<T> GetSeed()
{
return Entitys;
}
}
}