17 lines
496 B
C#
17 lines
496 B
C#
using System.Collections.Generic;
|
|
|
|
namespace BeWoPlanerMobil.Util
|
|
{
|
|
public class GroupOfPeopleItem
|
|
{
|
|
public long GroupOfPeopleOid { get; set; }
|
|
|
|
public List<long> Costbearer2SupportConceptRelOids { get; set; }
|
|
|
|
public GroupOfPeopleItem(long groupOfPeopleOid, List<long> costbearer2SupportConceptRelOids)
|
|
{
|
|
GroupOfPeopleOid = groupOfPeopleOid;
|
|
Costbearer2SupportConceptRelOids = costbearer2SupportConceptRelOids;
|
|
}
|
|
}
|
|
} |