sharding/samples/Sample.NoShardingMultiLevel/Entities/Department.cs

11 lines
273 B
C#

namespace Sample.NoShardingMultiLevel.Entities
{
public class Department
{
public string Id { get; set; }
public string CompanyId { get; set; }
public string Name { get; set; }
public virtual Company Company { get; set; }
}
}