namespace IoT.Shared.Application.Models { public class Chat { public string Id { get; set; } public string FromName { get; set; } public string ToId { get; set; } public string Type { get; set; } } }