Initial commit

This commit is contained in:
2026-01-15 15:22:05 +01:00
commit 0942f0b308
36 changed files with 1525 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using Oqtane.Models;
namespace SZUAbsolventenverein.Module.PremiumArea.Models
{
[Table("SZUAbsolventenvereinPremiumArea")]
public class PremiumArea : ModelBase
{
[Key]
public int PremiumAreaId { get; set; }
public int ModuleId { get; set; }
public string Name { get; set; }
}
}