mirror of
https://github.com/fergalmoran/podnoms.git
synced 2025-12-22 09:18:08 +00:00
17 lines
408 B
C#
17 lines
408 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 DateTime? MessageSeen { get; set; }
|
|
|
|
}
|
|
}
|