Skip to content

Commit

Permalink
(#125) deleating contract attributes for events external events
Browse files Browse the repository at this point in the history
  • Loading branch information
SaintAngeLs committed May 25, 2024
1 parent ada1c6c commit 21918e5
Show file tree
Hide file tree
Showing 8 changed files with 0 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@

namespace MiniSpace.Services.Events.Application.Events
{
[Message("notifications")]
public class EventCreated(Guid eventId, Guid organizerId, IEnumerable<Guid> mediaFilesIds) : IEvent
{
public Guid EventId { get; set; } = eventId;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

namespace MiniSpace.Services.Events.Application.Events
{
[Message("notifications")]
public class EventParticipantAdded: IEvent
{
public Guid EventId { get; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@

namespace MiniSpace.Services.Events.Application.Events
{
[Message("notifications")]
public class EventParticipantRemoved: IEvent
{
public Guid EventId { get; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@

namespace MiniSpace.Services.Events.Application.Events
{
[Message("notifications")]
public class EventUpdated(Guid eventId, DateTime updatedAt, Guid updatedBy, IEnumerable<Guid> mediaFilesIds) : IEvent
{
public Guid EventId { get; set; } = eventId;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

namespace MiniSpace.Services.Events.Application.Events
{
[Message("notifications")]
public class StudentCancelledInterestInEvent: IEvent
{
public Guid EventId { get; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

namespace MiniSpace.Services.Events.Application.Events
{
[Message("notifications")]
public class StudentCancelledSignUpToEvent: IEvent
{
public Guid EventId { get; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

namespace MiniSpace.Services.Events.Application.Events
{
[Message("notifications")]
public class StudentShowedInterestInEvent: IEvent

{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

namespace MiniSpace.Services.Events.Application.Events
{
[Message("notifications")]
public class StudentSignedUpToEvent: IEvent
{
public Guid EventId { get; }
Expand Down

0 comments on commit 21918e5

Please sign in to comment.