Select Git revision
modules.html
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
Feature.cs 721 B
using System;
using System.Collections.Generic;
// Code scaffolded by EF Core assumes nullable reference types (NRTs) are not used or disabled.
// If you have enabled NRTs for your project, then un-comment the following line:
// #nullable disable
namespace Coscine.Database.DataModel
{
public partial class Feature
{
public Feature()
{
ActivatedFeatures = new HashSet<ActivatedFeature>();
}
public Guid Id { get; set; }
public string SharepointId { get; set; }
public string DisplaynameEn { get; set; }
public string DisplaynameDe { get; set; }
public virtual ICollection<ActivatedFeature> ActivatedFeatures { get; set; }
}
}