12 lines
No EOL
292 B
C#
12 lines
No EOL
292 B
C#
namespace DrinkRateAPI.DbEntities;
|
|
|
|
public class DbCompanyTableView : DbEntityWithHistory
|
|
{
|
|
public Guid Id { get; set; }
|
|
|
|
public ICollection<DbCompanyTable> CompanyTables { get; set; }
|
|
|
|
public ICollection<DbUserProfile> UserProfiles { get; set; }
|
|
|
|
// to do: permission types
|
|
} |