18 lines
396 B
C#
18 lines
396 B
C#
using AyCode.Entities.Profiles;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using TIAM.Entities.Addresses;
|
|
|
|
namespace TIAM.Entities.Profiles;
|
|
|
|
[Table(nameof(Profile))]
|
|
public class Profile : AcProfile<Address>, IProfile<Address>
|
|
{
|
|
public Profile() : base()
|
|
{ }
|
|
|
|
public Profile(Guid id) : base(id)
|
|
{ }
|
|
|
|
public Profile(Guid id, string name) : base(id, name)
|
|
{ }
|
|
} |