26 lines
760 B
C#
26 lines
760 B
C#
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 EventId { get; set; }
|
|
public int ModuleId { get; set; }
|
|
public string Name { get; set; }
|
|
|
|
public string Description { get; set; }
|
|
public DateTime EventDate { get; set; }
|
|
public string Location { get; set; }
|
|
|
|
public string CreatedBy { get; set; }
|
|
public DateTime CreatedOn { get; set; }
|
|
public string ModifiedBy { get; set; }
|
|
public DateTime ModifiedOn { get; set; }
|
|
}
|
|
}
|