mirror of
https://github.com/oqtane/oqtane.framework.git
synced 2025-05-18 18:44:23 +00:00
14 lines
386 B
C#
14 lines
386 B
C#
using System.Collections.Generic;
|
|
using Oqtane.Modules.HtmlText.Models;
|
|
|
|
namespace Oqtane.Modules.HtmlText.Repository
|
|
{
|
|
public interface IHtmlTextRepository
|
|
{
|
|
HtmlTextInfo GetHtmlText(int ModuleId);
|
|
HtmlTextInfo AddHtmlText(HtmlTextInfo HtmlText);
|
|
HtmlTextInfo UpdateHtmlText(HtmlTextInfo HtmlText);
|
|
void DeleteHtmlText(int ModuleId);
|
|
}
|
|
}
|