Skip to content

Commit

Permalink
eol update I guess
Browse files Browse the repository at this point in the history
  • Loading branch information
NielsPilgaard committed Oct 17, 2023
1 parent a15d7fa commit 7174ec0
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions src/web/Shared/Chat/Commands/SendMessage.cs
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
namespace Jordnaer.Shared;

public class SendMessage
{
public required Guid Id { get; init; }

namespace Jordnaer.Shared;

public class SendMessage
{
public required Guid Id { get; init; }

public required Guid ChatId { get; init; }

public required string SenderId { get; init; }

public required string Text { get; init; }

public DateTime SentUtc { get; init; } = DateTime.UtcNow;

public string? AttachmentUrl { get; init; }
}
public required string SenderId { get; init; }

public required string Text { get; init; }

public DateTime SentUtc { get; init; } = DateTime.UtcNow;

public string? AttachmentUrl { get; init; }
}

0 comments on commit 7174ec0

Please sign in to comment.