oqtane.framework/Oqtane.Shared/Models/HtmlTextInfo.cs
2019-05-04 20:32:08 -04:00

15 lines
360 B
C#

using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace Oqtane.Shared.Modules.HtmlText.Models
{
[Table("HtmlText")]
public class HtmlTextInfo
{
[Key]
public int HtmlTextId { get; set; }
public int ModuleId { get; set; }
public string Content { get; set; }
}
}