using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DTO { public class DTOChat { public int chatId { get; set; } public string PlayerId1 { get; set; } public string PlayerId2 { get; set; } } }