Innovenergy_trunk/csharp/app/API/DataModel/UserParent.cs

6 lines
159 B
C#
Raw Normal View History

2023-02-16 12:57:06 +00:00
namespace InnovEnergy.API.DataModel;
public abstract partial record UserParent : DataElement
{
public List<User> Users { get; set; } = new List<User>();
}