remove MyModule and MyTheme from Application Template - solution can now nbe extended using Internal module/theme templates

This commit is contained in:
sbwalker
2025-10-31 10:02:34 -04:00
parent b917a7bbf6
commit 20e270c040
35 changed files with 10 additions and 2053 deletions

View File

@@ -1,19 +0,0 @@
using System;
using System.ComponentModel.DataAnnotations;
using Oqtane.Models;
namespace Oqtane.Application.Models
{
public class MyModule : IAuditable
{
[Key]
public int MyModuleId { get; set; }
public int ModuleId { get; set; }
public string Name { get; set; }
public string CreatedBy { get; set; }
public DateTime CreatedOn { get; set; }
public string ModifiedBy { get; set; }
public DateTime ModifiedOn { get; set; }
}
}