20 lines
389 B
C#
20 lines
389 B
C#
///
|
|
/// Copyright (c) 2020 Sensus slovensko a.s.
|
|
///
|
|
namespace TBF.UI.Settings
|
|
{
|
|
public class GroupTableRow
|
|
{
|
|
public int GroupId;
|
|
public Common.GID Gid;
|
|
public int UserId;
|
|
|
|
public GroupTableRow(int groupId, Common.GID gid, int userId)
|
|
{
|
|
GroupId = groupId;
|
|
Gid = gid;
|
|
UserId = userId;
|
|
}
|
|
}
|
|
}
|