10 lines
No EOL
205 B
C#
10 lines
No EOL
205 B
C#
namespace DrinkRateAPI.DbEntities;
|
|
|
|
public class DbCompanyTable
|
|
{
|
|
public Guid Id { get; set; }
|
|
|
|
public ICollection<DbCompany> Companies { get; set; }
|
|
|
|
public string CompanyTable { get; set; }
|
|
} |