
Interface Definition: done Server-Side-Implementation: partly done (CR missing, potential Refactor, ...) Client-Side-Implementation: started: (UI: done, Service: started, but works with SSR) Missing: Permissions / Roles to restrict access to an event. Missing: Fields on Event. Missing: Good Styling Time-Took: about 12 Hours. Learning: Commit in smaller packets, rest will be discussed at CR
24 lines
737 B
C#
24 lines
737 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using Oqtane.Models;
|
|
|
|
namespace SZUAbsolventenverein.Module.EventRegistration.Models
|
|
{
|
|
[Table("SZUAbsolventenvereinEventResponse")]
|
|
public class Response : IAuditable
|
|
{
|
|
[Key]
|
|
public int EventResponseId { get; set; }
|
|
public bool ResponseType { get; set; }
|
|
public int OwnerId { get; set; }
|
|
public int EventRegistrationId { get; set; }
|
|
public int ModuleId { get; set; }
|
|
|
|
public string CreatedBy { get; set; }
|
|
public DateTime CreatedOn { get; set; }
|
|
public string ModifiedBy { get; set; }
|
|
public DateTime ModifiedOn { get; set; }
|
|
}
|
|
}
|