|
using AyCode.Entities.Profiles;
|
|
using Mango.Entities.Addresses;
|
|
using Mango.Interfaces.Profiles;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Mango.Entities.Profiles;
|
|
|
|
[Table(nameof(Profile))]
|
|
public class Profile : AcProfile<Address>, IProfile<Address>
|
|
{
|
|
|
|
} |