2025-08-19 03:08:30 -05:00
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
|
|
|
|
|
namespace LANCommander.Server.Data.Models;
|
|
|
|
|
|
|
|
|
|
[Table("ChatThreads")]
|
|
|
|
|
public class ChatThread : BaseModel
|
|
|
|
|
{
|
2025-11-03 23:27:05 -06:00
|
|
|
[MaxLength(64)]
|
|
|
|
|
public string? Name { get; set; }
|
|
|
|
|
public ICollection<ChatMessage>? Messages { get; set; }
|
|
|
|
|
public ICollection<User>? Participants { get; set; }
|
2025-08-19 03:08:30 -05:00
|
|
|
}
|