13 lines
318 B
C#
13 lines
318 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using BeWoPlanerMobil.Controllers;
|
|
|
|
namespace BeWoPlanerMobil.Models
|
|
{
|
|
public class DevelopmentModel : AbstractModel
|
|
{
|
|
public List<UserRightGroup> UserRightGroups { get; set; } = new List<UserRightGroup>();
|
|
}
|
|
} |