Add project files.

This commit is contained in:
Adams
2025-04-07 11:47:28 +02:00
parent 616c50c0b9
commit 796a98dd89
42 changed files with 1871 additions and 0 deletions

View File

@ -0,0 +1,21 @@
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using Oqtane.Models;
namespace AdamGais.Module.AnmeldeTool.Models
{
[Table("AdamGaisAnmeldeTool")]
public class AnmeldeTool : IAuditable
{
[Key]
public int AnmeldeToolId { 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; }
}
}