Cody 8aa967fa1b
Remove Unnecessary Namespaces
Removes Unnecessary Namespaces 'System' and 'System.ComponentModel.DataAnnotations.Schema;'.
2025-05-06 13:29:26 -07:00

16 lines
434 B
C#

using Oqtane.Models;
using System.ComponentModel.DataAnnotations;
using Oqtane.Documentation;
namespace Oqtane.Modules.HtmlText.Models
{
[PrivateApi("Mark HtmlText classes as private, since it's not very useful in the public docs")]
public class HtmlText : ModelBase
{
[Key]
public int HtmlTextId { get; set; }
public int ModuleId { get; set; }
public string Content { get; set; }
}
}