Add project files.

This commit is contained in:
Konstantin Hintermayer
2025-04-30 15:58:45 +02:00
parent 4d08d59c93
commit f884c684e1
41 changed files with 1770 additions and 0 deletions

21
Shared/Models/Event.cs Normal file
View File

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