12 lines
No EOL
234 B
C#
12 lines
No EOL
234 B
C#
namespace DrinkRateAPI.DbEntities;
|
|
|
|
public class DbCompanyTableView
|
|
{
|
|
public Guid Id { get; set; }
|
|
|
|
public Guid CompanyTableId { get; set; }
|
|
|
|
public ICollection<DbUser> Users { get; set; }
|
|
|
|
// to do: permission types
|
|
} |