Files
xMessageService/Models/XMessage.cs
T
2024-01-25 04:51:13 +03:30

9 lines
269 B
C#

using System.Collections.Generic;
using xModels.Base;
namespace xMessageService.Models {
public partial class XMessage : XBaseDto {
public HashSet<string> Recievers { get; set; } = new HashSet<string> ();
public string Message { get; set; }
}
}