mirror of
https://github.com/fergalmoran/podnoms.git
synced 2025-12-22 17:28:43 +00:00
17 lines
451 B
C#
17 lines
451 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Collections.ObjectModel;
|
|
using Microsoft.Extensions.Options;
|
|
using PodNoms.Api.Services.Auth;
|
|
|
|
namespace PodNoms.Api.Models {
|
|
public class ChatMessage : BaseEntity, IEntity {
|
|
|
|
public ApplicationUser FromUser { get; set; }
|
|
public ApplicationUser ToUser { get; set; }
|
|
public string Message { get; set; }
|
|
public DateTime? MessageSeen { get; set; }
|
|
|
|
}
|
|
}
|