7136e4fc70
Labeled all service to enable assembly scanning
8 lines
218 B
C#
8 lines
218 B
C#
namespace LiteCharms.Features.MidrandBooks.Customers.Entities;
|
|
|
|
[EntityTypeConfiguration<ContactConfiguration, Contact>]
|
|
public class Contact : Models.Contact
|
|
{
|
|
public virtual Customer? Customer { get; set; }
|
|
}
|