14 lines
216 B
C#
14 lines
216 B
C#
namespace zero.Media;
|
|
|
|
public class MediaStore : EntityStore<Media>, IMediaStore
|
|
{
|
|
public MediaStore(IStoreContext context) : base(context)
|
|
{
|
|
|
|
}
|
|
}
|
|
|
|
|
|
public interface IMediaStore : IEntityStore<Media>
|
|
{
|
|
} |