Files
xPushService/Models/XPushGroupDto.cs
T
2024-01-25 04:47:14 +03:30

9 lines
256 B
C#

using System.Collections.Generic;
using xModels.Base;
namespace xPushService.Models {
public class XPushGroupDto : XBaseStorableDto<string> {
public override string Id { get; set; }
public List<string> Connections { get; set; }
}
}